diff --git a/SQL/admin_import_2018-02-03.py b/SQL/admin_import_2018-02-03.py
new file mode 100644
index 0000000000..19efc2fc44
--- /dev/null
+++ b/SQL/admin_import_2018-02-03.py
@@ -0,0 +1,93 @@
+#Python 3+ Script for importing admins.txt and admin_ranks.txt made by Jordie0608
+#
+#Before starting ensure you have installed the mysqlclient package https://github.com/PyMySQL/mysqlclient-python
+#It can be downloaded from command line with pip:
+#pip install mysqlclient
+#And that you have run the most recent commands listed in database_changelog.txt
+#
+#To view the parameters for this script, execute it with the argument --help
+#All the positional arguments are required, remember to include prefixes in your table names if you use them
+#An example of the command used to execute this script from powershell:
+#python admin_import_2018-02-03.py "localhost" "root" "password" "feedback" "SS13_admin" "SS13_admin_ranks"
+#
+#This script performs no error-correction, improper configurations of admins.txt or admin_ranks.txt will cause either breaking exceptions or invalid table rows
+#It's safe to run this script with your game server(s) active.
+
+
+import MySQLdb
+import argparse
+import re
+import sys
+
+def parse_text_flags(text, previous):
+ flag_values = {"BUILDMODE":1, "BUILD":1, "ADMIN":2, "REJUVINATE":2, "REJUV":2, "BAN":4, "FUN":8, "SERVER":16, "DEBUG":32, "POSSESS":64, "PERMISSIONS":128, "RIGHTS":128, "STEALTH":256, "POLL":512, "VAREDIT":1024, "SOUNDS":2048, "SOUND":2048, "SPAWN":4096, "CREATE":4096, "AUTOLOGIN":8192, "AUTOADMIN":8192, "DBRANKS":16384}
+ flags_int = 8192
+ exclude_flags_int = 0
+ can_edit_flags_int = 0
+ flags = text.split(" ")
+ if flags:
+ for flag in flags:
+ sign = flag[:1]
+ if flag[1:] in ("@", "prev"):
+ if sign is "+":
+ flags_int = previous[0]
+ elif sign is "-":
+ exclude_flags_int = previous[1]
+ elif sign is "*":
+ can_edit_flags_int = previous[2]
+ continue
+ if flag[1:] in ("EVERYTHING", "HOST", "ALL"):
+ if sign is "+":
+ flags_int = 65535
+ elif sign is "-":
+ exclude_flags_int = 65535
+ elif sign is "*":
+ can_edit_flags_int = 65535
+ continue
+ if flag[1:] in flag_values:
+ if sign is "+":
+ flags_int += flag_values[flag[1:]]
+ elif sign is "-":
+ exclude_flags_int += flag_values[flag[1:]]
+ elif sign is "*":
+ can_edit_flags_int += flag_values[flag[1:]]
+ flags_int = max(min(65535, flags_int), 0)
+ exclude_flags_int = max(min(65535, exclude_flags_int), 0)
+ can_edit_flags_int = max(min(65535, can_edit_flags_int), 0)
+ return flags_int, exclude_flags_int, can_edit_flags_int
+
+if sys.version_info[0] < 3:
+ raise Exception("Python must be at least version 3 for this script.")
+parser = argparse.ArgumentParser()
+parser.add_argument("address", help="MySQL server address (use localhost for the current computer)")
+parser.add_argument("username", help="MySQL login username")
+parser.add_argument("password", help="MySQL login username")
+parser.add_argument("database", help="Database name")
+parser.add_argument("admintable", help="Name of the current admin table (remember prefixes if you use them)")
+parser.add_argument("rankstable", help="Name of the current admin ranks (remember prefixes)")
+args = parser.parse_args()
+db=MySQLdb.connect(host=args.address, user=args.username, passwd=args.password, db=args.database)
+cursor=db.cursor()
+ranks_table = args.rankstable
+admin_table = args.admintable
+with open("..\\config\\admin_ranks.txt") as rank_file:
+ previous = 0
+ for line in rank_file:
+ if line.strip():
+ if line.startswith("#"):
+ continue
+ matches = re.match("(.+)\\b\\s+=\\s*(.*)", line)
+ flags = parse_text_flags(matches.group(2), previous)
+ previous = flags
+ cursor.execute("INSERT INTO {0} (rank, flags, exclude_flags, can_edit_flags) VALUES ('{1}', {2}, {3}, {4})".format(ranks_table, matches.group(1), flags[0], flags[1], flags[2]))
+with open("..\\config\\admins.txt") as admins_file:
+ previous = 0
+ for line in admins_file:
+ if line.strip():
+ if line.startswith("#"):
+ continue
+ matches = re.match("(.+)\\b\\s+=\\s+(.+)", line)
+ cursor.execute("INSERT INTO {0} (ckey, rank) VALUES ('{1}', '{2}')".format(admin_table, matches.group(1).lower(), matches.group(2)))
+db.commit()
+cursor.close()
+print("Import complete.")
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
index bc864fef2d..c9edcb6fc5 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
@@ -54,6 +54,25 @@
dir = 8
},
/area/ruin/unpowered/syndicate_lava_base/main)
+"ah" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 1
+ },
+/obj/structure/sign/barsign{
+ pixel_y = -32;
+ req_access = null;
+ req_access_txt = "0"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/syndicate_lava_base/bar)
+"ai" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/syndicate_lava_base/bar)
"ap" = (
/obj/machinery/light/small{
dir = 1
@@ -547,7 +566,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/mob/living/carbon/monkey{
- faction = list("neutral","syndicate")
+ faction = list("neutral","Syndicate")
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -891,7 +910,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/mob/living/carbon/monkey{
- faction = list("neutral","syndicate")
+ faction = list("neutral","Syndicate")
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -1268,8 +1287,7 @@
base_state = "left";
dir = 2;
icon_state = "left";
- name = "Chemistry";
- req_access_txt = "0"
+ name = "Chemistry"
},
/obj/machinery/door/window/southleft{
base_state = "left";
@@ -2176,8 +2194,7 @@
"hk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_access_txt = "0"
+ name = "Cargo Bay"
},
/turf/open/floor/plasteel/floorgrime,
/area/ruin/unpowered/syndicate_lava_base/cargo)
@@ -2214,7 +2231,7 @@
"hp" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/carbon/monkey{
- faction = list("neutral","syndicate")
+ faction = list("neutral","Syndicate")
},
/turf/open/floor/plasteel/white/side{
dir = 9
@@ -2235,7 +2252,7 @@
/area/ruin/unpowered/syndicate_lava_base/virology)
"hr" = (
/mob/living/carbon/monkey{
- faction = list("neutral","syndicate")
+ faction = list("neutral","Syndicate")
},
/turf/open/floor/plasteel/white/side{
dir = 5
@@ -2346,8 +2363,7 @@
"hC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Bay";
- req_access_txt = "0"
+ name = "Cargo Bay"
},
/turf/open/floor/plasteel,
/area/ruin/unpowered/syndicate_lava_base/cargo)
@@ -2362,7 +2378,7 @@
/area/ruin/unpowered/syndicate_lava_base/cargo)
"hE" = (
/mob/living/carbon/monkey{
- faction = list("neutral","syndicate")
+ faction = list("neutral","Syndicate")
},
/turf/open/floor/plasteel/white/side{
dir = 10
@@ -2382,7 +2398,7 @@
"hG" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/carbon/monkey{
- faction = list("neutral","syndicate")
+ faction = list("neutral","Syndicate")
},
/turf/open/floor/plasteel/white/side{
dir = 6
@@ -2672,8 +2688,7 @@
/area/ruin/unpowered/syndicate_lava_base/main)
"il" = (
/obj/machinery/door/airlock{
- name = "Cabin 2";
- req_access_txt = "0"
+ name = "Cabin 2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -2685,8 +2700,7 @@
/area/ruin/unpowered/syndicate_lava_base/dormitories)
"im" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
@@ -2695,8 +2709,7 @@
/area/ruin/unpowered/syndicate_lava_base/dormitories)
"in" = (
/obj/machinery/door/airlock{
- name = "Cabin 4";
- req_access_txt = "0"
+ name = "Cabin 4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3141,8 +3154,7 @@
/area/lavaland/surface/outdoors)
"jf" = (
/obj/machinery/door/airlock{
- name = "Cabin 1";
- req_access_txt = "0"
+ name = "Cabin 1"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3169,8 +3181,7 @@
/area/ruin/unpowered/syndicate_lava_base/dormitories)
"jh" = (
/obj/machinery/door/airlock{
- name = "Cabin 3";
- req_access_txt = "0"
+ name = "Cabin 3"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4236,8 +4247,7 @@
base_state = "right";
dir = 1;
icon_state = "right";
- name = "Bar";
- req_access_txt = "0"
+ name = "Bar"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -5041,21 +5051,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/ruin/unpowered/syndicate_lava_base/bar)
-"mV" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/structure/sign/barsign{
- pixel_y = -32;
- req_access = null;
- req_access_txt = "0"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/syndicate_lava_base/bar)
-"mW" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/wood,
-/area/ruin/unpowered/syndicate_lava_base/bar)
"mX" = (
/obj/structure/rack{
dir = 8
@@ -7054,7 +7049,7 @@ li
lA
lX
mw
-mV
+ah
jy
nu
oo
@@ -7101,7 +7096,7 @@ lj
lB
lY
lA
-mW
+ai
jP
nT
op
diff --git a/_maps/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
index 310737d778..d66c98156d 100644
--- a/_maps/RandomRuins/SpaceRuins/DJstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
@@ -337,9 +337,7 @@
/area/ruin/space/djstation)
"bi" = (
/obj/machinery/door/airlock/external{
- name = "Ruskie DJ Station";
- req_access = null;
- req_access_txt = "0"
+ name = "Ruskie DJ Station"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
@@ -353,9 +351,7 @@
/area/space/nearstation)
"Co" = (
/obj/machinery/door/airlock/external{
- name = "Ruskie DJ Station";
- req_access = null;
- req_access_txt = "0"
+ name = "Ruskie DJ Station"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
index 4ee5f467d9..2f16ae49c5 100644
--- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
+++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
@@ -290,12 +290,11 @@
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/solar_control)
"aT" = (
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 8;
environ = 0;
equipment = 0;
lighting = 0;
- locked = 0;
name = "Starboard Solar APC";
pixel_x = -24
},
@@ -887,7 +886,6 @@
"cV" = (
/obj/machinery/door/airlock/command{
name = "E.V.A.";
- req_access = null;
req_access_txt = "18"
},
/obj/structure/cable{
@@ -3270,7 +3268,6 @@
"kR" = (
/obj/machinery/door/airlock/security{
name = "Security";
- req_access = null;
req_access_txt = "1"
},
/obj/structure/cable{
@@ -4209,12 +4206,11 @@
/area/ruin/space/derelict/se_solar)
"nZ" = (
/obj/structure/cable,
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 8;
environ = 0;
equipment = 0;
lighting = 0;
- locked = 0;
name = "Worn-out APC";
pixel_x = -24
},
diff --git a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
index c9d06ab187..956664da1e 100644
--- a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
+++ b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
@@ -315,12 +315,11 @@
},
/area/ruin/space/has_grav/abandonedzoo)
"aS" = (
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 8;
environ = 0;
equipment = 0;
lighting = 0;
- locked = 0;
name = "Worn-out APC";
pixel_x = -24
},
diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
index 7dfb3013b6..788c925772 100644
--- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
@@ -517,11 +517,10 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 1;
environ = 0;
equipment = 3;
- locked = 0;
pixel_y = 32;
req_access = null
},
@@ -779,11 +778,10 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 1;
environ = 0;
equipment = 3;
- locked = 0;
pixel_y = 32;
req_access = null
},
@@ -1049,9 +1047,8 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 1;
- locked = 0;
pixel_y = 28;
req_access = null
},
diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
index 7cadaaabba..cbb8450584 100644
--- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
+++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
@@ -181,9 +181,7 @@
/obj/item/stack/sheet/mineral/wood,
/obj/item/stack/packageWrap,
/obj/effect/turf_decal/delivery,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/floorgrime,
@@ -384,9 +382,7 @@
"aZ" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
@@ -867,9 +863,7 @@
/area/ruin/space/has_grav/deepstorage)
"cm" = (
/obj/structure/table,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -912,9 +906,7 @@
/area/ruin/space/has_grav/deepstorage)
"cs" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/freezer,
@@ -2168,9 +2160,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/floorgrime,
@@ -2880,9 +2870,7 @@
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/light,
diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
index 558ff2f255..6850cc2515 100644
--- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
@@ -781,8 +781,7 @@
dir = 1
},
/obj/machinery/door/airlock{
- name = "Cabin";
- req_access_txt = "0"
+ name = "Cabin"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
index 64664486dc..bfb9887a37 100644
--- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
@@ -292,12 +292,9 @@
/obj/structure/chair{
dir = 1
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- pixel_x = 24;
- req_access = null;
- req_one_access = null
+ pixel_x = 24
},
/obj/machinery/light{
dir = 4
@@ -1063,12 +1060,9 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- locked = 0;
- pixel_x = -23;
- req_access = null;
- req_one_access = null
+ pixel_x = -23
},
/turf/open/floor/plasteel/floorgrime,
/area/ruin/space/has_grav/ancientstation)
@@ -1130,12 +1124,9 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- pixel_x = 24;
- req_access = null;
- req_one_access = null
+ pixel_x = 24
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/floorgrime,
@@ -1253,12 +1244,9 @@
"dO" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- pixel_x = 24;
- req_access = null;
- req_one_access = null
+ pixel_x = 24
},
/obj/item/clothing/suit/space/nasavoid/old,
/turf/open/floor/plasteel/yellow/side{
@@ -1319,12 +1307,9 @@
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- locked = 0;
- pixel_x = -23;
- req_access = null;
- req_one_access = null
+ pixel_x = -23
},
/turf/open/floor/plasteel/floorgrime,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
@@ -1363,12 +1348,9 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"ee" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- pixel_x = 24;
- req_access = null;
- req_one_access = null
+ pixel_x = 24
},
/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
@@ -2134,7 +2116,6 @@
"gg" = (
/obj/machinery/door/airlock/external{
name = "Engineering External Access";
- req_access = null;
req_access_txt = "200"
},
/obj/effect/decal/cleanable/dirt,
@@ -2768,12 +2749,8 @@
/area/ruin/space/has_grav/ancientstation/kitchen)
"hw" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null;
- req_one_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/effect/decal/cleanable/egg_smudge,
/turf/open/floor/plasteel/cafeteria,
@@ -3199,12 +3176,9 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- pixel_x = 24;
- req_access = null;
- req_one_access = null
+ pixel_x = 24
},
/turf/open/floor/plasteel/orange/side{
tag = "icon-orange (EAST)";
@@ -3259,9 +3233,8 @@
pixel_x = 2;
pixel_y = 2
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/red/side{
@@ -3287,12 +3260,9 @@
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- locked = 0;
- pixel_x = -23;
- req_access = null;
- req_one_access = null
+ pixel_x = -23
},
/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel/floorgrime,
@@ -3393,12 +3363,9 @@
/turf/open/floor/plasteel/cafeteria,
/area/ruin/space/has_grav/ancientstation/kitchen)
"iO" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- pixel_x = 24;
- req_access = null;
- req_one_access = null
+ pixel_x = 24
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/floorgrime,
@@ -3923,12 +3890,8 @@
/area/ruin/space/has_grav/ancientstation/proto)
"kj" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null;
- req_one_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation/proto)
@@ -4327,12 +4290,9 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/proto)
"lk" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- locked = 0;
- pixel_x = 24;
- req_access = null;
- req_one_access = null
+ pixel_x = 24
},
/turf/open/floor/plasteel/airless/floorgrime,
/area/ruin/space/has_grav/ancientstation/atmo)
@@ -8308,4 +8268,4 @@ aa
aa
aa
aa
-"}
\ No newline at end of file
+"}
diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm
index 82c7bc2018..743583885e 100644
--- a/_maps/RandomZLevels/Academy.dmm
+++ b/_maps/RandomZLevels/Academy.dmm
@@ -44,11 +44,10 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 1;
environ = 3;
equipment = 3;
- locked = 0;
pixel_y = 32;
req_access = null
},
@@ -1157,11 +1156,10 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 1;
environ = 3;
equipment = 3;
- locked = 0;
pixel_y = 32;
req_access = null
},
@@ -2146,11 +2144,10 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 1;
environ = 3;
equipment = 3;
- locked = 0;
pixel_y = 32;
req_access = null
},
@@ -3106,11 +3103,10 @@
/turf/open/floor/plating,
/area/awaymission/academy/academygate)
"kh" = (
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 1;
environ = 3;
equipment = 3;
- locked = 0;
pixel_y = 32;
req_access = null
},
diff --git a/_maps/RandomZLevels/Cabin.dmm b/_maps/RandomZLevels/Cabin.dmm
index 7305c5f0fa..4d7494d902 100644
--- a/_maps/RandomZLevels/Cabin.dmm
+++ b/_maps/RandomZLevels/Cabin.dmm
@@ -411,7 +411,9 @@
/area/awaymission/cabin)
"bv" = (
/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks/beer,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
/turf/open/floor/wood,
/area/awaymission/cabin)
"bw" = (
diff --git a/_maps/RandomZLevels/centcomAway.dmm b/_maps/RandomZLevels/centcomAway.dmm
index 83ad870fb3..371d17ae2c 100644
--- a/_maps/RandomZLevels/centcomAway.dmm
+++ b/_maps/RandomZLevels/centcomAway.dmm
@@ -936,8 +936,7 @@
/area/awaymission/centcomAway/general)
"dL" = (
/obj/machinery/door/airlock/hatch{
- name = "Rest Room";
- req_access_txt = "0"
+ name = "Rest Room"
},
/turf/open/floor/mineral/titanium,
/area/awaymission/centcomAway/hangar)
diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm
index 0e451edcfb..4ec51aef62 100644
--- a/_maps/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/RandomZLevels/moonoutpost19.dmm
@@ -428,8 +428,6 @@
/area/awaymission/moonoutpost19/syndicate)
"bo" = (
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 1;
pixel_y = 23;
req_access = null;
req_access_txt = "150"
@@ -544,8 +542,7 @@
/area/awaymission/moonoutpost19/syndicate)
"bw" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/open/floor/plasteel/freezer{
heat_capacity = 1e+006
@@ -609,8 +606,6 @@
},
/obj/machinery/airalarm{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
req_access = null;
req_access_txt = "150"
@@ -759,8 +754,6 @@
"bU" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/airalarm{
- frequency = 1439;
- locked = 1;
pixel_y = 23;
req_access = null;
req_access_txt = "150"
@@ -858,9 +851,7 @@
},
/area/awaymission/moonoutpost19/syndicate)
"cd" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23;
req_access = null;
req_access_txt = "150"
@@ -1315,8 +1306,6 @@
"cS" = (
/obj/machinery/airalarm{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
req_access = null;
req_access_txt = "150"
@@ -1411,7 +1400,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/bed,
@@ -1439,7 +1427,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/dresser,
@@ -1499,8 +1486,6 @@
/obj/structure/chair/wood/normal,
/obj/machinery/airalarm{
dir = 4;
- frequency = 1439;
- locked = 1;
pixel_x = -23;
req_access = null;
req_access_txt = "150"
@@ -1531,8 +1516,6 @@
"dk" = (
/obj/machinery/airalarm{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
req_access = null;
req_access_txt = "150"
@@ -2297,9 +2280,7 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23;
req_access = null
},
@@ -2374,8 +2355,7 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/obj/effect/decal/cleanable/blood/tracks{
desc = "Your instincts say you shouldn't be following these.";
@@ -2431,9 +2411,7 @@
icon_state = "bulb-broken";
status = 2
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23;
req_access = null
},
@@ -2789,10 +2767,7 @@
},
/area/awaymission/moonoutpost19/research)
"fQ" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -2835,9 +2810,7 @@
pixel_x = -3;
pixel_y = -2
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23;
req_access = null
},
@@ -3362,10 +3335,8 @@
icon_state = "tube-broken";
status = 2
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 8;
- frequency = 1439;
- locked = 0;
pixel_x = 23;
req_access = null
},
@@ -3625,9 +3596,7 @@
icon_state = "bulb-broken";
status = 2
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23;
req_access = null
},
@@ -3737,8 +3706,7 @@
icon_state = "open";
name = "Research Director's Office";
opacity = 0;
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
@@ -3785,10 +3753,8 @@
/obj/structure/table,
/obj/item/storage/firstaid/regular,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 8;
- frequency = 1439;
- locked = 0;
pixel_x = 23;
req_access = null
},
@@ -4009,8 +3975,7 @@
/obj/machinery/door/airlock/medical{
id_tag = "";
name = "Research Division";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plasteel/white{
@@ -4058,10 +4023,8 @@
},
/area/awaymission/moonoutpost19/research)
"ij" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- frequency = 1439;
- locked = 0;
pixel_x = -23;
req_access = null
},
@@ -4525,8 +4488,7 @@
/area/awaymission/moonoutpost19/arrivals)
"jh" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/open/floor/plasteel/freezer{
heat_capacity = 1e+006
@@ -4751,9 +4713,7 @@
},
/area/awaymission/moonoutpost19/arrivals)
"jI" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23;
req_access = null
},
@@ -4903,9 +4863,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23;
req_access = null
},
@@ -5120,10 +5078,8 @@
dir = 4
},
/obj/machinery/processor,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 8;
- frequency = 1439;
- locked = 0;
pixel_x = 23;
req_access = null
},
@@ -5364,7 +5320,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -5385,10 +5340,7 @@
},
/area/awaymission/moonoutpost19/arrivals)
"kV" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/open/floor/plating{
heat_capacity = 1e+006
},
@@ -5540,10 +5492,8 @@
dir = 4
},
/obj/structure/chair/wood/normal,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 8;
- frequency = 1439;
- locked = 0;
pixel_x = 23;
req_access = null
},
@@ -5563,10 +5513,8 @@
},
/obj/structure/table,
/obj/item/storage/box,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- frequency = 1439;
- locked = 0;
pixel_x = -23;
req_access = null
},
@@ -5601,8 +5549,7 @@
/obj/machinery/button/door{
id = "awaykitchen";
name = "Kitchen Shutters Control";
- pixel_x = -25;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/cafeteria{
@@ -6008,7 +5955,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -6210,10 +6156,8 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 8;
- frequency = 1439;
- locked = 0;
pixel_x = 23;
req_access = null
},
@@ -6445,10 +6389,8 @@
},
/area/awaymission/moonoutpost19/arrivals)
"ny" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 8;
- frequency = 1439;
- locked = 0;
pixel_x = 23;
req_access = null
},
@@ -6461,8 +6403,7 @@
/area/awaymission/moonoutpost19/arrivals)
"nz" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/turf/open/floor/plating{
heat_capacity = 1e+006
@@ -6560,7 +6501,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/remains/human{
@@ -6838,8 +6778,7 @@
/obj/machinery/door/airlock/medical{
id_tag = "";
name = "Research Division";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm
index 95d5efd2e6..a31612f32b 100644
--- a/_maps/RandomZLevels/research.dmm
+++ b/_maps/RandomZLevels/research.dmm
@@ -4199,8 +4199,7 @@
/area/awaymission/research/interior/escapepods)
"mS" = (
/obj/machinery/door/airlock/external{
- name = "Escape Pod Three";
- req_access_txt = "0"
+ name = "Escape Pod Three"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -4279,8 +4278,7 @@
/area/awaymission/research/interior/engineering)
"pt" = (
/obj/machinery/door/airlock/external{
- name = "Escape Pod Three";
- req_access_txt = "0"
+ name = "Escape Pod Three"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm
index 702bc9ca4e..c3280b2327 100644
--- a/_maps/RandomZLevels/snowdin.dmm
+++ b/_maps/RandomZLevels/snowdin.dmm
@@ -472,7 +472,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/item/tome,
@@ -487,7 +486,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/wood,
@@ -511,7 +509,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/wood,
@@ -523,7 +520,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/wood,
@@ -537,7 +533,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/wood,
@@ -1624,7 +1619,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/cobweb,
@@ -2744,7 +2738,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -3098,7 +3091,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "45"
},
@@ -8932,7 +8924,7 @@
desc = "A turret built with substandard parts and run down further with age.";
icon_state = "syndie_off";
dir = 9;
- faction = "pirate"
+ faction = list("pirate")
},
/turf/open/floor/plating/snowed/smoothed,
/area/awaymission/snowdin/cave)
@@ -10641,7 +10633,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plating/snowed/smoothed,
@@ -13074,8 +13065,7 @@
"Ic" = (
/obj/machinery/door/airlock/research{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm
index fb23a2c0b1..94a95d0c01 100644
--- a/_maps/RandomZLevels/undergroundoutpost45.dmm
+++ b/_maps/RandomZLevels/undergroundoutpost45.dmm
@@ -84,24 +84,21 @@
id = "UO45_Elevator";
name = "Elevator Doors";
pixel_x = 6;
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/button/door{
desc = "A remote control-switch to call the elevator to your level.";
id = "UO45_useless";
name = "B1";
pixel_x = -6;
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/button/door{
desc = "A remote control-switch to call the elevator to your level.";
id = "UO45_useless";
name = "B2";
pixel_x = -6;
- pixel_y = -34;
- req_access_txt = "0"
+ pixel_y = -34
},
/turf/open/floor/plasteel{
dir = 8;
@@ -194,16 +191,14 @@
id = "UO45_useless";
name = "Call Elevator";
pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/machinery/button/door{
desc = "A remote control-switch for the elevator doors.";
id = "UO45_Elevator";
name = "Elevator Doors";
pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/turf/open/floor/plasteel{
heat_capacity = 1e+006
@@ -506,10 +501,7 @@
},
/area/awaymission/undergroundoutpost45/central)
"br" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/open/floor/plating{
heat_capacity = 1e+006
},
@@ -522,12 +514,9 @@
/area/awaymission/undergroundoutpost45/central)
"bt" = (
/obj/machinery/light/small,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 1;
- frequency = 1439;
- locked = 0;
- pixel_y = -23;
- req_access = null
+ pixel_y = -23
},
/turf/open/floor/plasteel/freezer{
heat_capacity = 1e+006
@@ -540,8 +529,7 @@
/area/awaymission/undergroundoutpost45/central)
"bv" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/open/floor/plasteel/freezer{
heat_capacity = 1e+006
@@ -842,10 +830,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/open/floor/plating{
heat_capacity = 1e+006
},
@@ -972,11 +957,8 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -1002,12 +984,9 @@
},
/area/awaymission/undergroundoutpost45/central)
"cz" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/filingcabinet,
@@ -1024,11 +1003,8 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -1097,7 +1073,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -1139,7 +1114,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -1453,12 +1427,9 @@
/obj/machinery/light{
dir = 8
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/turf/open/floor/plasteel{
dir = 8;
@@ -1530,11 +1501,8 @@
},
/area/awaymission/undergroundoutpost45/central)
"dE" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/machinery/light{
dir = 1
@@ -1788,9 +1756,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
- icon_state = "closed";
- lockdownbyai = 0;
- locked = 0;
name = "Gateway Chamber";
req_access_txt = "201"
},
@@ -1812,8 +1777,7 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Security Checkpoint Maintenance";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/turf/open/floor/plating{
heat_capacity = 1e+006
@@ -2391,12 +2355,9 @@
/obj/machinery/light{
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/turf/open/floor/plasteel/green/side{
dir = 4;
@@ -2505,7 +2466,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -2627,12 +2587,9 @@
/area/awaymission/undergroundoutpost45/central)
"fR" = (
/obj/machinery/light/small,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 1;
- frequency = 1439;
- locked = 0;
- pixel_y = -23;
- req_access = null
+ pixel_y = -23
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
@@ -3101,11 +3058,8 @@
},
/area/awaymission/undergroundoutpost45/research)
"gY" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/machinery/light/small{
dir = 1
@@ -3190,12 +3144,9 @@
},
/area/awaymission/undergroundoutpost45/crew_quarters)
"hg" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/turf/open/floor/plasteel{
heat_capacity = 1e+006
@@ -3289,12 +3240,9 @@
},
/area/awaymission/undergroundoutpost45/crew_quarters)
"hs" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/obj/machinery/camera{
c_tag = "Kitchen";
@@ -3622,12 +3570,9 @@
},
/area/awaymission/undergroundoutpost45/gateway)
"ic" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/chair{
@@ -4106,12 +4051,9 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/turf/open/floor/plasteel/bar{
heat_capacity = 1e+006
@@ -4168,12 +4110,9 @@
},
/area/awaymission/undergroundoutpost45/crew_quarters)
"jg" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/obj/machinery/camera{
c_tag = "Gateway Chamber";
@@ -4336,8 +4275,7 @@
"jy" = (
/obj/machinery/door/window/southright{
name = "Bar Door";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/bar{
@@ -4441,12 +4379,9 @@
},
/area/awaymission/undergroundoutpost45/gateway)
"jK" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
@@ -4477,8 +4412,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/research{
name = "Research Lab";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/turf/open/floor/plasteel/white{
heat_capacity = 1e+006
@@ -4598,10 +4532,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/open/floor/plating{
heat_capacity = 1e+006
},
@@ -4740,9 +4671,6 @@
dir = 4
},
/obj/machinery/door/airlock/command{
- icon_state = "closed";
- lockdownbyai = 0;
- locked = 0;
name = "Gateway EVA";
req_access_txt = "201"
},
@@ -4774,11 +4702,8 @@
},
/area/awaymission/undergroundoutpost45/crew_quarters)
"ko" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/turf/open/floor/plasteel{
heat_capacity = 1e+006
@@ -4991,11 +4916,8 @@
},
/area/awaymission/undergroundoutpost45/gateway)
"kJ" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/machinery/light/small{
dir = 1
@@ -5092,11 +5014,8 @@
},
/area/awaymission/undergroundoutpost45/research)
"kT" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/machinery/light/small{
dir = 1
@@ -5270,12 +5189,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 1;
- frequency = 1439;
- locked = 0;
- pixel_y = -23;
- req_access = null
+ pixel_y = -23
},
/turf/open/floor/plasteel/bar{
heat_capacity = 1e+006
@@ -5351,11 +5267,8 @@
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -5979,11 +5892,8 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/turf/open/floor/carpet{
heat_capacity = 1e+006
@@ -6009,11 +5919,8 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/structure/chair/wood/normal{
dir = 8
@@ -6314,7 +6221,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/chair/wood/normal{
@@ -6355,7 +6261,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -6557,10 +6462,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/open/floor/plating{
heat_capacity = 1e+006
},
@@ -6743,12 +6645,9 @@
},
/area/awaymission/undergroundoutpost45/research)
"nO" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/obj/machinery/light/small{
dir = 8
@@ -6828,12 +6727,9 @@
},
/area/awaymission/undergroundoutpost45/research)
"nT" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/obj/machinery/light{
dir = 8
@@ -6885,12 +6781,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/turf/open/floor/plasteel/neutral/side{
dir = 8;
@@ -7013,11 +6906,8 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7465,12 +7355,9 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/obj/machinery/light/small{
dir = 4
@@ -7739,8 +7626,7 @@
/area/awaymission/undergroundoutpost45/crew_quarters)
"pr" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/open/floor/plasteel/freezer{
heat_capacity = 1e+006
@@ -7748,10 +7634,7 @@
/area/awaymission/undergroundoutpost45/crew_quarters)
"ps" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/open/floor/plating{
heat_capacity = 1e+006
},
@@ -7985,7 +7868,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -8023,7 +7905,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -8098,8 +7979,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/door/airlock/engineering/glass{
name = "SMES Room";
- req_access_txt = "201";
- req_one_access_txt = "0"
+ req_access_txt = "201"
},
/turf/open/floor/plasteel/dark{
heat_capacity = 1e+006
@@ -8224,11 +8104,8 @@
/area/awaymission/undergroundoutpost45/research)
"qp" = (
/obj/structure/table,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/hand_labeler,
@@ -8264,12 +8141,9 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/turf/open/floor/carpet{
heat_capacity = 1e+006
@@ -8285,12 +8159,9 @@
},
/area/awaymission/undergroundoutpost45/crew_quarters)
"qv" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/turf/open/floor/carpet{
heat_capacity = 1e+006
@@ -8300,12 +8171,9 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/turf/open/floor/plasteel/freezer{
heat_capacity = 1e+006
@@ -9175,11 +9043,8 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9251,8 +9116,7 @@
dir = 4
},
/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Reception";
- req_access_txt = "0"
+ name = "Engineering Reception"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel{
@@ -9693,8 +9557,7 @@
dir = 4
},
/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Reception";
- req_access_txt = "0"
+ name = "Engineering Reception"
},
/turf/open/floor/plasteel{
heat_capacity = 1e+006
@@ -10516,12 +10379,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 5
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 1;
- frequency = 1439;
- locked = 0;
- pixel_y = -23;
- req_access = null
+ pixel_y = -23
},
/turf/open/floor/plasteel/floorgrime{
dir = 8;
@@ -10664,10 +10524,7 @@
},
/area/awaymission/undergroundoutpost45/crew_quarters)
"uz" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/open/floor/plating{
heat_capacity = 1e+006
},
@@ -10902,11 +10759,8 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23;
- req_access = null
+/obj/machinery/airalarm/all_access{
+ pixel_y = 23
},
/turf/open/floor/plasteel/floorgrime{
dir = 8;
@@ -11622,7 +11476,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -11742,12 +11595,9 @@
},
/area/awaymission/undergroundoutpost45/engineering)
"wC" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/turf/open/floor/plasteel/floorgrime{
dir = 8;
@@ -11852,7 +11702,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet{
@@ -11932,12 +11781,9 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
@@ -12162,12 +12008,9 @@
/area/awaymission/undergroundoutpost45/mining)
"xp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 8;
- frequency = 1439;
- locked = 0;
- pixel_x = 23;
- req_access = null
+ pixel_x = 23
},
/obj/structure/cable{
icon_state = "1-2"
@@ -12529,12 +12372,9 @@
},
/area/awaymission/undergroundoutpost45/mining)
"xZ" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/all_access{
dir = 4;
- frequency = 1439;
- locked = 0;
- pixel_x = -23;
- req_access = null
+ pixel_x = -23
},
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/floorgrime{
diff --git a/_maps/cit_map_files/BoxStation/BoxStation.dmm b/_maps/cit_map_files/BoxStation/BoxStation.dmm
index 92f72fd46a..553fb5919e 100644
--- a/_maps/cit_map_files/BoxStation/BoxStation.dmm
+++ b/_maps/cit_map_files/BoxStation/BoxStation.dmm
@@ -2,6 +2,44 @@
"aaa" = (
/turf/open/space/basic,
/area/space)
+"aab" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aac" = (
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 2;
+ pixel_x = 30;
+ receive_ore_updates = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Bar";
+ dir = 8
+ },
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aad" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/maintenance/port/aft)
"aae" = (
/obj/effect/landmark/carpspawn,
/turf/open/space,
@@ -240,10 +278,10 @@
/turf/open/space,
/area/space/nearstation)
"aaT" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
+/obj/machinery/flasher/portable,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/security/armory)
"aaU" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/floorgrime,
@@ -1203,6 +1241,12 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
+"adr" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/security/main)
"ads" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -2140,8 +2184,7 @@
/area/security/main)
"afo" = (
/obj/machinery/door/airlock/external{
- name = "Escape Pod Three";
- req_access_txt = "0"
+ name = "Escape Pod Three"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -2157,7 +2200,8 @@
id = "pod3";
name = "escape pod 3";
port_direction = 2;
- preferred_direction = 4
+ preferred_direction = 4;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
@@ -2350,7 +2394,6 @@
"afO" = (
/obj/machinery/door/airlock/command{
name = "Command Tool Storage";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel,
@@ -2359,7 +2402,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/command{
name = "Command Tool Storage";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/dark,
@@ -4077,7 +4119,6 @@
"ajW" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/structure/cable{
@@ -4552,7 +4593,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -4725,7 +4765,7 @@
},
/area/security/courtroom)
"alJ" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/neutral/side,
/area/security/courtroom)
"alK" = (
@@ -4753,17 +4793,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
-"alN" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "seclobby";
- name = "security shutters"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/brig)
"alO" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -4972,7 +5001,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -5055,15 +5083,6 @@
/obj/item/trash/plate,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"amI" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Cryogenics APC";
- pixel_x = 24
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/crew_quarters/cryopod)
"amL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/spawner/structure/window/reinforced,
@@ -5345,25 +5364,29 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"anE" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 0;
- req_access_txt = "13"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"anF" = (
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
+"anG" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
"anH" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/port/fore)
"anI" = (
/obj/machinery/door/airlock/engineering{
- locked = 0;
name = "Port Bow Solar Access";
req_access_txt = "10"
},
@@ -6315,7 +6338,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -6376,7 +6398,6 @@
"aqv" = (
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -6389,7 +6410,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
- locked = 0;
name = "Starboard Bow Solar Access";
req_access_txt = "10"
},
@@ -6460,7 +6480,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -7096,7 +7115,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -7195,7 +7213,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -7402,10 +7419,7 @@
/area/crew_quarters/heads/hos)
"atp" = (
/obj/machinery/door/airlock/external{
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Construction Zone"
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
@@ -7466,8 +7480,7 @@
/obj/machinery/button/door{
id = "maint3";
name = "Blast Door Control C";
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
@@ -7801,7 +7814,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -7990,8 +8002,7 @@
"auX" = (
/obj/structure/mirror{
icon_state = "mirror_broke";
- pixel_y = 28;
- broken = 1
+ pixel_y = 28
},
/obj/machinery/iv_drip,
/turf/open/floor/plating,
@@ -7999,8 +8010,7 @@
"auY" = (
/obj/structure/mirror{
icon_state = "mirror_broke";
- pixel_y = 28;
- broken = 1
+ pixel_y = 28
},
/obj/item/shard{
icon_state = "medium"
@@ -8713,15 +8723,13 @@
id = "maint2";
name = "Blast Door Control B";
pixel_x = -28;
- pixel_y = 4;
- req_access_txt = "0"
+ pixel_y = 4
},
/obj/machinery/button/door{
id = "maint1";
name = "Blast Door Control A";
pixel_x = -28;
- pixel_y = -6;
- req_access_txt = "0"
+ pixel_y = -6
},
/obj/structure/cable{
icon_state = "1-2"
@@ -10010,8 +10018,7 @@
/area/ai_monitored/storage/eva)
"azX" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -11174,6 +11181,13 @@
dir = 4
},
/area/construction/mining/aux_base)
+"aCU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/security/armory)
"aCW" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/spawner/lootdrop/maintenance,
@@ -11453,9 +11467,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"aDG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
@@ -11547,8 +11559,7 @@
/area/crew_quarters/theatre)
"aDS" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -11757,6 +11768,12 @@
/obj/structure/ore_box,
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
+"aEt" = (
+/obj/item/restraints/handcuffs/fake,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
+/turf/open/floor/plating,
+/area/maintenance/bar)
"aEz" = (
/obj/machinery/power/apc{
dir = 4;
@@ -11867,8 +11884,7 @@
/area/security/checkpoint/auxiliary)
"aEL" = (
/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
+ name = "Garden"
},
/turf/open/floor/plasteel,
/area/hydroponics/garden)
@@ -12059,8 +12075,7 @@
/area/crew_quarters/toilet)
"aFh" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -12849,7 +12864,6 @@
"aGZ" = (
/obj/machinery/door/airlock/security{
name = "Security Checkpoint";
- req_access = null;
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13500,7 +13514,6 @@
id = "aux_base_shutters";
name = "Public Shutters Control";
pixel_x = 24;
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/turf/open/floor/plasteel/yellow/side{
@@ -14075,8 +14088,6 @@
"aKc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
- lockdownbyai = 0;
- locked = 0;
name = "Gateway Access";
req_access_txt = "62"
},
@@ -14574,7 +14585,6 @@
"aLu" = (
/obj/machinery/door/airlock/engineering{
name = "Auxillary Base Construction";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -15332,8 +15342,7 @@
"aNH" = (
/obj/machinery/door/window{
dir = 4;
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -15508,7 +15517,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
"aOe" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/camera{
c_tag = "Arrivals Bay 1 South"
},
@@ -16129,18 +16138,6 @@
/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)
@@ -16556,8 +16553,7 @@
/area/maintenance/port)
"aRc" = (
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/turf/open/floor/plating,
/area/storage/emergency/port)
@@ -17236,21 +17232,6 @@
/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;
- receive_ore_updates = 1
- },
-/obj/machinery/camera{
- c_tag = "Bar";
- dir = 8
- },
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
"aTb" = (
/obj/machinery/newscaster{
pixel_y = 32
@@ -18049,7 +18030,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVp" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -18924,7 +18905,6 @@
"aXl" = (
/obj/machinery/door/window/southright{
name = "Bar Door";
- req_access_txt = "0";
req_one_access_txt = "25;28"
},
/turf/open/floor/plasteel/bar,
@@ -18950,8 +18930,7 @@
/area/hydroponics)
"aXp" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
@@ -19075,9 +19054,7 @@
dir = 4
},
/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ name = "Port Docking Bay 2"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -19405,7 +19382,6 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
- locked = 0;
name = "AI Upload Access";
req_access_txt = "16"
},
@@ -19888,7 +19864,6 @@
"aZQ" = (
/obj/machinery/door/airlock/command{
name = "Conference Room";
- req_access = null;
req_access_txt = "19"
},
/obj/structure/cable{
@@ -19928,7 +19903,6 @@
"aZX" = (
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable{
@@ -21330,6 +21304,9 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
/turf/open/floor/plating,
/area/maintenance/aft)
"bdP" = (
@@ -21718,16 +21695,14 @@
"beK" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 4";
- req_access_txt = "0"
+ name = "Port Docking Bay 4"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"beL" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 3";
- req_access_txt = "0"
+ name = "Port Docking Bay 3"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -22566,7 +22541,6 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/smoke_machine,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"bha" = (
@@ -22700,8 +22674,7 @@
/area/medical/morgue)
"bhr" = (
/obj/machinery/door/airlock{
- name = "Starboard Emergency Storage";
- req_access_txt = "0"
+ name = "Starboard Emergency Storage"
},
/turf/open/floor/plating,
/area/storage/emergency/starboard)
@@ -22713,8 +22686,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
@@ -22759,7 +22731,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/turf/open/floor/plasteel/white,
/area/science/robotics/lab)
"bhy" = (
@@ -22922,6 +22894,13 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"bhP" = (
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
"bhQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -24225,7 +24204,6 @@
"blb" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -24553,7 +24531,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/machinery/rnd/protolathe/department/science,
+/obj/machinery/rnd/production/protolathe/department/science,
/turf/open/floor/plasteel,
/area/science/lab)
"blK" = (
@@ -24802,7 +24780,6 @@
"bms" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/cable{
@@ -24860,8 +24837,7 @@
/area/crew_quarters/heads/captain)
"bmA" = (
/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
+ name = "Private Restroom"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
@@ -25192,7 +25168,7 @@
/area/science/lab)
"bno" = (
/obj/item/reagent_containers/glass/beaker/sulphuric,
-/obj/machinery/rnd/circuit_imprinter/department/science,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
/turf/open/floor/plasteel,
/area/science/lab)
"bnp" = (
@@ -25467,8 +25443,7 @@
},
/obj/machinery/door/airlock/engineering/glass{
name = "Gravity Generator";
- req_access_txt = "11";
- req_one_access_txt = "0"
+ req_access_txt = "11"
},
/turf/open/floor/plasteel/dark,
/area/engine/gravity_generator)
@@ -25921,8 +25896,7 @@
/obj/machinery/door/window/northleft{
dir = 8;
icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
@@ -26188,7 +26162,6 @@
"bpD" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
@@ -27055,7 +27028,6 @@
/area/science/explab)
"brE" = (
/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -27307,7 +27279,7 @@
pixel_y = 1
},
/obj/structure/table,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -27442,8 +27414,7 @@
"bsw" = (
/obj/machinery/door/airlock/research{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/turf/open/floor/plasteel/white,
/area/science/robotics/lab)
@@ -28377,6 +28348,9 @@
name = "Genetics Research Access";
req_access_txt = "9"
},
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"buH" = (
@@ -28393,6 +28367,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
/turf/open/floor/plasteel/white,
/area/science/research)
"buI" = (
@@ -28648,8 +28625,7 @@
/area/medical/medbay/central)
"bvl" = (
/obj/machinery/door/airlock/medical/glass{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29685,7 +29661,6 @@
"bxG" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/cable{
@@ -29888,7 +29863,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable{
@@ -30275,9 +30249,7 @@
/area/medical/sleeper)
"bzc" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Room";
- req_access_txt = "0"
+ name = "Recovery Room"
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
@@ -32353,7 +32325,6 @@
/area/maintenance/aft)
"bDW" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -32401,7 +32372,6 @@
dir = 4
},
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -33023,7 +32993,7 @@
department = "Medbay";
departmentType = 1;
name = "Medbay RC";
- pixel_w = 30
+ pixel_x = 30
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
@@ -33193,7 +33163,6 @@
/area/science/mixing)
"bFY" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/obj/structure/cable{
@@ -33405,8 +33374,8 @@
/area/science/mixing)
"bGA" = (
/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
@@ -33683,9 +33652,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"bHg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bHh" = (
@@ -34201,8 +34168,8 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bIm" = (
-/obj/machinery/rnd/protolathe/department/medical,
/obj/machinery/light,
+/obj/machinery/rnd/production/techfab/department/medical,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bIn" = (
@@ -34443,6 +34410,13 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"bIP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"bIQ" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -34540,7 +34514,6 @@
},
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48";
shuttledocked = 1
},
@@ -35549,6 +35522,9 @@
/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bLj" = (
@@ -35591,7 +35567,7 @@
/turf/open/floor/plating/airless,
/area/science/test_area)
"bLp" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plating/airless,
/area/science/test_area)
"bLq" = (
@@ -36044,6 +36020,7 @@
dir = 4;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/engine,
/area/science/mixing)
"bMy" = (
@@ -36054,6 +36031,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bMz" = (
@@ -36442,6 +36420,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bNy" = (
@@ -36886,6 +36865,7 @@
dir = 8;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
/area/science/mixing)
"bOG" = (
@@ -36897,6 +36877,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bOH" = (
@@ -37960,11 +37941,6 @@
icon_state = "wood-broken7"
},
/area/maintenance/port/aft)
-"bRd" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/turf/open/floor/wood,
-/area/maintenance/port/aft)
"bRe" = (
/obj/structure/table/wood,
/obj/effect/spawner/lootdrop/maintenance{
@@ -39507,7 +39483,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bUN" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bUO" = (
@@ -40560,7 +40536,6 @@
},
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -41989,7 +41964,7 @@
/turf/open/floor/engine,
/area/science/misc_lab)
"caY" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/engine,
/area/science/misc_lab)
"caZ" = (
@@ -42775,6 +42750,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"ccP" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"ccQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/xenobiology)
"ccR" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/bot{
@@ -43680,6 +43663,20 @@
/obj/item/caution,
/turf/open/floor/plating,
/area/maintenance/aft)
+"cfr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 2;
+ external_pressure_bound = 140;
+ pressure_checks = 0;
+ name = "killroom vent"
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Kill Room";
+ dir = 4;
+ network = list("ss13","rd")
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"cfs" = (
/obj/machinery/door/airlock/maintenance/abandoned{
name = "Air Supply Maintenance";
@@ -43717,6 +43714,15 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating/airless,
/area/maintenance/solars/port/aft)
+"cfy" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"cfz" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -43870,12 +43876,10 @@
/obj/structure/cable{
icon_state = "1-4"
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cfZ" = (
@@ -43952,6 +43956,9 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"cgi" = (
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"cgj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/barricade/wooden,
@@ -43960,6 +43967,11 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"cgk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/biohazard,
+/turf/open/floor/plating,
+/area/science/xenobiology)
"cgl" = (
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 2;
@@ -43977,6 +43989,17 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"cgn" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ target_temperature = 80;
+ dir = 2;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"cgo" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -44352,8 +44375,18 @@
/obj/structure/cable/yellow{
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
+"cho" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"chp" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44363,11 +44396,44 @@
},
/turf/closed/wall,
/area/maintenance/starboard/aft)
+"chq" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/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/science/xenobiology)
"chs" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/circuit/killroom,
/area/science/xenobiology)
+"cht" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"chu" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"chv" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -44546,7 +44612,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -44803,6 +44868,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ciF" = (
@@ -45100,6 +45166,9 @@
/area/maintenance/disposal/incinerator)
"cjs" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cjt" = (
@@ -45117,6 +45186,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cjv" = (
@@ -45126,6 +45198,10 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cjw" = (
@@ -45138,6 +45214,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
/turf/closed/wall,
/area/maintenance/disposal/incinerator)
"cjy" = (
@@ -45156,6 +45235,18 @@
/obj/item/cigbutt/roach,
/turf/open/floor/plating,
/area/maintenance/aft)
+"cjB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/structure/table,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"cjC" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -45380,7 +45471,6 @@
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ckf" = (
-/obj/structure/disposalpipe/segment,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
@@ -45400,6 +45490,9 @@
/area/maintenance/disposal/incinerator)
"cki" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ckj" = (
@@ -45417,6 +45510,7 @@
dir = 4;
name = "Incinerator to Space"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ckl" = (
@@ -45432,6 +45526,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
+"ckn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/science/xenobiology)
"cko" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
@@ -45800,6 +45899,7 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"clk" = (
@@ -45840,7 +45940,6 @@
"clp" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -46024,7 +46123,7 @@
/area/engine/engineering)
"clS" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/rnd/protolathe/department/security,
+/obj/machinery/rnd/production/protolathe/department/security,
/turf/open/floor/plasteel/red/side,
/area/security/main)
"clT" = (
@@ -46085,6 +46184,9 @@
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cmg" = (
@@ -46288,11 +46390,6 @@
dir = 1
},
/area/engine/engineering)
-"cmR" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/wood,
-/area/maintenance/bar)
"cmU" = (
/obj/machinery/light/small,
/turf/open/floor/engine/n2,
@@ -46319,20 +46416,21 @@
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/warning/fire{
pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "incinerator_airlock_sensor";
+ master_tag = "incinerator_airlock_control";
+ pixel_x = 8;
+ pixel_y = 24
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cmZ" = (
@@ -46343,22 +46441,23 @@
/obj/structure/sign/warning/fire{
pixel_x = 32
},
-/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
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cna" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 8;
+ frequency = 1449;
+ id = "incinerator_airlock_pump"
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cnb" = (
@@ -46415,7 +46514,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -46803,7 +46901,7 @@
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
"coq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 1
},
/obj/structure/sign/warning/vacuum/external{
@@ -47275,10 +47373,9 @@
/area/maintenance/disposal/incinerator)
"cpO" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/components/binary/pump{
+/obj/machinery/atmospherics/components/binary/pump/on{
dir = 2;
- name = "Incinerator Output Pump";
- on = 1
+ name = "Incinerator Output Pump"
},
/turf/open/space,
/area/maintenance/disposal/incinerator)
@@ -47339,7 +47436,7 @@
c_tag = "Engineering Storage";
dir = 4
},
-/obj/machinery/rnd/protolathe/department/engineering,
+/obj/machinery/rnd/production/protolathe/department/engineering,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cpW" = (
@@ -47482,7 +47579,6 @@
"cqu" = (
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -47495,7 +47591,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cqx" = (
@@ -47869,13 +47965,8 @@
/turf/open/floor/plating,
/area/engine/engineering)
"crJ" = (
-/obj/machinery/light/small{
- dir = 8;
- light_color = "#fff4bc"
- },
-/obj/structure/closet/emcloset/anchored,
-/turf/open/floor/plating,
-/area/engine/engineering)
+/turf/open/space/basic,
+/area/space/nearstation)
"crK" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -48009,13 +48100,16 @@
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"csr" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- idInterior = "incinerator_airlock_interior";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Incinerator Access Console";
+ airpump_tag = "incinerator_airlock_pump";
+ exterior_door_tag = "incinerator_airlock_exterior";
+ id_tag = "incinerator_access_control";
+ interior_door_tag = "incinerator_airlock_interior";
pixel_x = 6;
pixel_y = -26;
+ sanitize_external = 1;
+ sensor_tag = "incinerator_airlock_sensor";
req_access_txt = "12"
},
/obj/machinery/button/ignition{
@@ -48141,7 +48235,6 @@
},
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65;13"
},
/turf/open/floor/plating,
@@ -49856,27 +49949,14 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"cxR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/brig)
"cxW" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -49924,7 +50004,6 @@
},
/obj/machinery/door/airlock/command{
name = "Command Tool Storage";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/dark,
@@ -49944,9 +50023,7 @@
dir = 8
},
/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ name = "Port Docking Bay 2"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -49973,8 +50050,7 @@
dir = 1
},
/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 4";
- req_access_txt = "0"
+ name = "Port Docking Bay 4"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -49983,20 +50059,10 @@
dir = 1
},
/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 3";
- req_access_txt = "0"
+ name = "Port Docking Bay 3"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"cyA" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"cyC" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -50022,7 +50088,6 @@
},
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -50046,7 +50111,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -50091,7 +50155,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -50114,7 +50177,6 @@
},
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65;13"
},
/turf/open/floor/plating,
@@ -50208,6 +50270,11 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
+"czQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"czR" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -51219,12 +51286,6 @@
dir = 4
},
/area/engine/engineering)
-"cDO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
"cDZ" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -51238,10 +51299,6 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"cEm" = (
-/obj/machinery/vending/autodrobe,
-/turf/open/floor/wood,
-/area/maintenance/bar)
"cEs" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -51307,6 +51364,9 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"cFJ" = (
+/turf/open/floor/plating/airless,
+/area/space)
"cFK" = (
/obj/machinery/field/generator{
anchored = 1;
@@ -51672,37 +51732,15 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"cKh" = (
-/obj/structure/bed,
-/obj/item/bedsheet/grey,
-/obj/effect/decal/cleanable/semen{
- desc = "Blech.";
- name = "dried semen"
- },
-/obj/effect/spawner/lootdrop/costume,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+"cIK" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cKY" = (
+/obj/structure/table/wood/poker,
+/obj/item/coin/iron,
+/turf/open/floor/wood,
/area/maintenance/bar)
-"cKI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 1;
- id_tag = "lobbyairlock";
- name = "Security Lobby";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"cLr" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
"cMm" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -51853,7 +51891,6 @@
/area/maintenance/starboard)
"cNV" = (
/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -51867,7 +51904,6 @@
/area/maintenance/starboard/aft)
"cNX" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/obj/structure/cable{
@@ -51954,12 +51990,10 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"cQZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+"cQG" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
"cSz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52311,46 +52345,25 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"cTY" = (
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cTZ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"cVb" = (
/turf/closed/wall,
/area/hallway/secondary/service)
-"cVk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/camera/motion{
- c_tag = "Armory Motion Sensor";
- dir = 2;
- name = "motion-sensitive security camera"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"cYR" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"daq" = (
-/obj/machinery/door/airlock/maintenance/abandoned{
- name = "Incinerator Access";
- req_access_txt = "12"
- },
-/obj/structure/barricade/wooden{
- name = "wooden barricade (CLOSED)"
- },
+"dcQ" = (
+/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/maintenance/bar)
-"ddq" = (
-/obj/structure/grille,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
+/area/space/nearstation)
"dfh" = (
/obj/machinery/power/apc{
areastring = "/area/science/circuit";
@@ -52365,50 +52378,91 @@
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"dfW" = (
+"diu" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/bar)
+"dlj" = (
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"dnc" = (
+/obj/machinery/door/airlock/maintenance/abandoned{
+ req_access_txt = "0"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/brig)
-"dkZ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"dqu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"dvO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"dAS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
/turf/closed/wall,
-/area/maintenance/fore/secondary)
-"dLQ" = (
-/turf/open/floor/plasteel/red/corner{
+/area/science/circuit)
+"dxw" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/security/brig)
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dAs" = (
+/obj/structure/sign/poster/random{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"dCs" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dFc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/bar)
+"dFm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
"dMZ" = (
/obj/structure/sign/poster/official/random{
pixel_y = 32
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"dRy" = (
-/obj/structure/table,
-/obj/item/storage/box/firingpins,
-/obj/item/storage/box/firingpins,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"dUn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
+"dVC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/light,
+/turf/open/floor/plasteel/red/side,
/area/security/brig)
"eaI" = (
/obj/structure/table/reinforced,
@@ -52417,76 +52471,21 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"eeP" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"eiu" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- target_temperature = 80;
- dir = 2;
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"eiQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/brig)
-"ejb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ejX" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"elx" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/warden)
-"eoF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"eqj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/brig)
-"ese" = (
+"erb" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
/area/security/brig)
+"erH" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
"eyM" = (
/obj/machinery/mineral/ore_redemption{
input_dir = 2;
@@ -52495,25 +52494,41 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"eBn" = (
-/obj/effect/turf_decal/stripes/white/line{
+"eyV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "seclobby";
+ name = "security shutters"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"eCQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"eHI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/disposal/incinerator)
+"eLY" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/corner{
dir = 1
},
-/obj/effect/turf_decal/stripes/white/corner,
+/obj/machinery/door_timer{
+ id = "Secure Cell";
+ name = "Secure Cell";
+ pixel_y = -32
+ },
/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
-"eGa" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"eHD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"eRz" = (
/obj/structure/lattice,
/obj/structure/grille,
@@ -52529,34 +52544,42 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"fdi" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space/basic,
-/area/space)
-"fgi" = (
-/turf/closed/wall,
-/area/crew_quarters/cryopod)
-"fiq" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"eXc" = (
+/obj/structure/window/reinforced,
+/obj/vehicle/ridden/secway,
+/obj/item/key/security,
+/obj/machinery/door/window/eastleft{
+ name = "Secway Docking Port"
},
-/turf/open/floor/plasteel,
-/area/security/armory)
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/showroomfloor,
+/area/space)
+"eXD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"eYQ" = (
+/obj/machinery/vending/kink,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"fbL" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/drone,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"fcG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
"flc" = (
/obj/machinery/bookbinder,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"fmW" = (
-/obj/effect/turf_decal/loading_area/white,
-/obj/effect/turf_decal/stripes/white/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/white/corner,
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
"fnC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -52570,60 +52593,85 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hallway/secondary/service)
-"foQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"fsC" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"fFB" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/spawner/structure/window/reinforced,
+"fnP" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/device/assembly/signaler,
/turf/open/floor/plating,
+/area/maintenance/bar)
+"fpI" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/brig)
+"fAn" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
/area/engine/engineering)
-"fIx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"fAq" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red/side{
dir = 4
},
-/turf/closed/wall,
+/area/security/brig)
+"fDs" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/wood,
/area/maintenance/bar)
"fKl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/science/circuit)
-"fNa" = (
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/bar";
- dir = 2;
- name = "Maintenance Bar APC";
- pixel_x = 1;
- pixel_y = -24
+"fPq" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/bar)
+"fPE" = (
+/obj/structure/table,
+/obj/item/grenade/barrier{
+ pixel_x = 4
+ },
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier{
+ pixel_x = -4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/armory)
+"fSk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/cable,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
/area/maintenance/bar)
-"fXR" = (
-/obj/structure/table/wood/poker,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"fVu" = (
+/obj/machinery/camera/motion{
+ c_tag = "Non-Lethal Armory Motion Sensor";
dir = 4
},
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/armory)
+"fWC" = (
+/obj/machinery/chem_dispenser/drinks/beer,
+/obj/structure/table/wood,
/turf/open/floor/wood,
/area/maintenance/bar)
"gbq" = (
@@ -52638,70 +52686,96 @@
/obj/item/stack/sheet/glass/fifty,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"get" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"ghy" = (
+/obj/machinery/light/small{
+ dir = 8;
+ light_color = "#fff4bc"
+ },
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/engine/engineering)
"gjl" = (
/turf/closed/wall,
/area/quartermaster/warehouse)
-"gnt" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
+"gmz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
},
-/area/maintenance/bar)
-"gqJ" = (
-/obj/structure/window/reinforced,
-/obj/vehicle/ridden/secway,
-/obj/item/key/security,
-/obj/machinery/door/window/eastleft{
- name = "Secway Docking Port"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/showroomfloor,
-/area/space)
-"gre" = (
/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"gtB" = (
+/area/space/nearstation)
+"gva" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/light,
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"gvi" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"gvx" = (
+/turf/open/floor/plasteel,
+/area/security/execution/transfer)
"gwd" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"gBe" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"gEu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"gHZ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/bar)
-"gKd" = (
+"gAl" = (
/turf/open/floor/plasteel/red/side{
- dir = 8
+ dir = 10
},
/area/security/brig)
+"gGR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"gKN" = (
+/obj/structure/bed,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/turf/open/floor/plasteel,
+/area/security/execution/transfer)
+"gLD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/maintenance/fore/secondary)
"gLH" = (
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -52709,12 +52783,17 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"gUO" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/red/side{
- dir = 4
+"gMx" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"gQx" = (
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
},
-/area/security/brig)
+/area/crew_quarters/cryopod)
"gWd" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -52725,6 +52804,18 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
+"gZp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 1;
+ id_tag = "lobbyairlock";
+ name = "Security Lobby";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
"gZG" = (
/obj/structure/closet/crate/freezer/surplus_limbs,
/obj/item/reagent_containers/glass/beaker/synthflesh,
@@ -52732,17 +52823,6 @@
dir = 8
},
/area/medical/sleeper)
-"hbX" = (
-/obj/machinery/flasher{
- id = "brigentry";
- pixel_y = -28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
"hcE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -52760,208 +52840,59 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"hfn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/biohazard,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"hgP" = (
-/obj/structure/closet/bombcloset/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/space)
-"hmW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+"hfY" = (
+/obj/machinery/flasher{
+ id = "brigentry";
+ pixel_y = -28
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"hyz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair{
+ dir = 1
},
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"hCi" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"hDa" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"hMa" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"hQd" = (
-/turf/open/space/basic,
-/area/engine/engineering)
-"hSW" = (
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"ieW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
+"hik" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"hjI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ilg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"hnm" = (
+/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"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"hpY" = (
+/obj/effect/spawner/lootdrop/keg,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
/area/maintenance/bar)
-"ilT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/armory)
-"ipA" = (
-/obj/machinery/droneDispenser,
-/turf/open/floor/plating,
-/area/maintenance/department/medical/morgue)
-"iqO" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Port Aft";
- dir = 1;
- network = list("engine")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"itG" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"iun" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"izg" = (
-/obj/structure/table/wood/poker,
-/obj/item/coin/iron,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"iEJ" = (
-/obj/machinery/door/airlock/external{
- name = "Escape Pod One"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"iNn" = (
-/obj/machinery/camera{
- c_tag = "Kitchen Cold Room"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/reagent_dispensers/cooking_oil,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"iNt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"iRn" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 2;
- external_pressure_bound = 140;
- pressure_checks = 0;
- name = "killroom vent"
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology Kill Room";
- dir = 4;
- network = list("ss13","rd")
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"iZz" = (
-/obj/structure/table/wood/poker,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"jaa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0"
+"htN" = (
+/obj/structure/sign/poster/random{
+ pixel_y = -32
},
/turf/open/floor/wood{
- icon_state = "wood-broken"
+ icon_state = "wood-broken7"
},
/area/maintenance/bar)
-"jbf" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/hallway/secondary/service";
- dir = 1;
- name = "Service Hall APC";
- pixel_y = 25
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"jgm" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/machinery/camera{
- c_tag = "Circuitry Lab";
- dir = 8;
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"jlm" = (
-/obj/machinery/rnd/protolathe/department/cargo,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"jrE" = (
-/obj/machinery/rnd/protolathe/department/science,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"jvH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"jvX" = (
+"hBF" = (
/obj/machinery/door_timer{
id = "Cell 2";
name = "Cell 2";
@@ -52971,47 +52902,64 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/red/corner,
/area/security/brig)
-"jwO" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"jxR" = (
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"jyX" = (
-/obj/structure/sign/warning/securearea,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"jAD" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"jCq" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
+"hHa" = (
+/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{
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"hNj" = (
+/obj/machinery/door/airlock/maintenance/abandoned{
+ req_access_txt = "0"
},
/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"jHt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 10
+/area/maintenance/bar)
+"hXw" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
},
-/obj/structure/cable{
- icon_state = "2-8"
+/area/maintenance/bar)
+"iev" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel,
+/area/security/armory)
+"imZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
},
+/area/maintenance/bar)
+"inb" = (
+/obj/structure/rack,
+/obj/item/gun/energy/e_gun/dragnet,
+/obj/item/gun/energy/e_gun/dragnet,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/security/armory)
+"ipA" = (
+/obj/machinery/droneDispenser,
/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"jKI" = (
+/area/maintenance/department/medical/morgue)
+"itG" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"ivo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -53026,268 +52974,76 @@
dir = 9
},
/area/security/brig)
-"jSO" = (
-/obj/machinery/light{
- dir = 4
- },
+"iyf" = (
/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"jVl" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"jZh" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"khb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/obj/structure/table,
-/obj/item/kitchen/rollingpin,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"khB" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 0;
- req_access_txt = "13"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fore/secondary)
-"kkQ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"knx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Gravity Generator";
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/gravity_generator)
-"kob" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"kyO" = (
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/pen,
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"kDA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/security/armory)
-"kEo" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"kGu" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"kHd" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"kHN" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"kNw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"kPd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"kQk" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/medical/morgue)
-"kSb" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"kTn" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/item/reagent_containers/spray/cleaner,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/bar)
-"kXw" = (
-/obj/machinery/vending/games{
- name = "\improper Good 'Clean' Fun"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lik" = (
+"iyX" = (
+/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/red/side{
- dir = 10
+ dir = 4
},
/area/security/brig)
-"lqu" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
+"iDC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"iEJ" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod One"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
/turf/open/floor/plating,
-/area/science/xenobiology)
-"lxM" = (
-/obj/structure/sign/poster/random{
- pixel_y = -32
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lza" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin,
-/obj/item/pen/blue,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/crew_quarters/cryopod)
-"lzJ" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lAB" = (
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall,
-/area/science/circuit)
-"lBd" = (
+/area/hallway/secondary/entry)
+"iFU" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/space)
-"lFR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lMg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"lNK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lQG" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/science/circuit)
-"lWm" = (
-/obj/machinery/door/window/brigdoor/security/cell{
- id = "Cell 3";
- name = "Cell 3"
+"iNn" = (
+/obj/machinery/camera{
+ c_tag = "Kitchen Cold Room"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"lWz" = (
-/turf/closed/wall,
-/area/maintenance/bar)
-"mhD" = (
-/obj/machinery/cryopod{
- tag = "icon-cryopod-open (EAST)";
- icon_state = "cryopod-open";
- dir = 4
- },
-/turf/open/floor/noslip,
-/area/crew_quarters/cryopod)
-"mmW" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"mnl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+/obj/structure/reagent_dispensers/cooking_oil,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"iUe" = (
+/turf/open/floor/plasteel/red/corner{
dir = 1
},
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"mnG" = (
+"iVO" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Port Aft";
+ dir = 1;
+ network = list("engine")
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"iWY" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"jbf" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/secondary/service";
+ dir = 1;
+ name = "Service Hall APC";
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"jcD" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/bulletproof{
pixel_x = -3;
@@ -53314,99 +53070,243 @@
/obj/effect/turf_decal/bot_white,
/turf/open/floor/plasteel/dark,
/area/security/armory)
-"mnX" = (
+"jgm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab";
+ dir = 8;
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"jlm" = (
+/obj/machinery/rnd/production/techfab/department/cargo,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"jlZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/maintenance/bar)
+"jrE" = (
+/obj/machinery/rnd/production/protolathe/department/science,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"jrJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"jyK" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Control";
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/brig)
+"jAD" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"jCq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"jCY" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/fore/secondary)
+"jEl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"jFG" = (
+/obj/structure/table,
+/obj/item/storage/box/firingpins,
+/obj/item/storage/box/firingpins,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"jHt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"jKG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 1;
+ id_tag = "lobbyairlock";
+ name = "Security Lobby";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"jMi" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"jMF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/science/circuit)
+"jSO" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"jVl" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"jWi" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/space/nearstation)
+"jXD" = (
+/obj/machinery/flasher{
+ id = "Cell 3";
+ pixel_x = -28
+ },
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"muS" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
+"kbf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
},
-/area/maintenance/bar)
-"mxj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0"
- },
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/turf_decal/bot{
+ dir = 2
},
/turf/open/floor/plating,
-/area/maintenance/bar)
-"myd" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"mzz" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
/area/engine/engineering)
-"mHd" = (
-/obj/structure/falsewall,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"mLm" = (
-/obj/structure/cable{
- icon_state = "1-8"
+"kgu" = (
+/turf/open/space/basic,
+/area/engine/engineering)
+"khb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"mMg" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
+/obj/structure/table,
+/obj/item/kitchen/rollingpin,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"khB" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
+"knx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Gravity Generator";
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"kob" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/engine/engineering)
-"mNi" = (
-/obj/machinery/light_switch{
- pixel_x = -20
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"mQs" = (
-/obj/machinery/power/emitter/anchored{
- dir = 4;
- state = 2
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"mRe" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"mSu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/area/maintenance/starboard/aft)
+"kqE" = (
+/obj/structure/table/wood/poker,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/fore/secondary)
-"mWO" = (
-/turf/open/floor/plating/airless,
-/area/space)
-"mXj" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/space)
-"mXs" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"ksK" = (
+/obj/machinery/door/airlock/maintenance/abandoned{
+ name = "Incinerator Access";
+ req_access_txt = "12"
+ },
+/obj/structure/barricade/wooden{
+ name = "wooden barricade (CLOSED)"
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"kuC" = (
+/obj/item/shard,
+/obj/item/wirecutters,
+/obj/item/wallframe/camera,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/bar)
+"kvn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
/turf/open/floor/plasteel,
-/area/security/execution/transfer)
-"nnM" = (
-/turf/closed/wall/r_wall,
-/area/security/armory)
-"nsq" = (
+/area/security/brig)
+"kwU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53414,18 +53314,329 @@
dir = 8
},
/area/security/brig)
-"nuC" = (
+"kyp" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 1;
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/brig)
+"kzT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"kEw" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"kIZ" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"nwx" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
+/area/security/warden)
+"kOs" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"kOw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"kPd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"kPh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/bar)
+"kPB" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"kQk" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/medical/morgue)
+"kSb" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"ldw" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space,
+/area/space)
+"ldy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/brig)
+"lgs" = (
+/obj/structure/table/wood/poker,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"lkm" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"lkA" = (
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/bar";
+ dir = 2;
+ name = "Maintenance Bar APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"lkC" = (
+/obj/structure/sign/poster/official/no_erp,
+/turf/closed/wall,
+/area/maintenance/bar)
+"lmZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"lou" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"lAB" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall,
+/area/science/circuit)
+"lJX" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"lMg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"lQG" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/science/circuit)
+"lTm" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"lXp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/brig)
+"maf" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"mdX" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"mkG" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"mlj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/maintenance/abandoned{
+ req_access_txt = "0"
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/bar)
+"msk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"mtY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"mwi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/armory)
+"mxQ" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "lowsecarmory";
+ name = "Non-Lethal Armoury Shutter"
+ },
+/obj/machinery/button/door{
+ id = "lowsecarmory";
+ name = "Non-Lethal Armory Shutters";
+ pixel_y = 26;
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/main)
+"myR" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/item/pen/blue,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/crew_quarters/cryopod)
+"mAD" = (
+/obj/machinery/door_timer{
+ id = "Cell 3";
+ name = "Cell 3";
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/security/brig)
+"mDW" = (
+/obj/machinery/flasher{
+ id = "Cell 4";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"mFn" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space/basic,
+/area/space)
+"mGv" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"mNi" = (
+/obj/machinery/light_switch{
+ pixel_x = -20
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"mRe" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"mTC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"mUH" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/execution/transfer)
+"ndn" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/brig)
+"nrJ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"nrT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"nvm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
"nxv" = (
/obj/machinery/power/apc{
name = "Construction Area APC";
@@ -53437,36 +53648,17 @@
},
/turf/open/floor/plating,
/area/construction)
-"nys" = (
-/obj/machinery/flasher{
- id = "Cell 4";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"nAv" = (
-/obj/structure/table,
-/obj/item/grenade/barrier{
- pixel_x = 4
- },
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier{
- pixel_x = -4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/security/armory)
-"nGs" = (
-/obj/item/lighter/greyscale,
-/obj/effect/decal/cleanable/semen{
- desc = "Blech.";
- name = "dried semen"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
+"nyw" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"nAW" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"nBt" = (
+/obj/machinery/vending/games{
+ name = "\improper Good 'Clean' Fun"
},
+/turf/open/floor/wood,
/area/maintenance/bar)
"nGt" = (
/obj/structure/cable{
@@ -53479,157 +53671,103 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"nHg" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"nLS" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
+"nNQ" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
},
-/obj/effect/turf_decal/stripes/corner{
+/obj/effect/turf_decal/stripes/white/corner,
+/turf/open/floor/plasteel/dark,
+/area/security/execution/transfer)
+"nQE" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"nRD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
+ dir = 5
},
/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
+/area/hallway/primary/fore)
"nRG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"nYI" = (
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/crowbar,
-/obj/item/device/electropack/shockcollar,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"oaS" = (
-/obj/effect/landmark/start/station_engineer,
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"obC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"ock" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"ody" = (
-/obj/effect/spawner/lootdrop/keg,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"ofN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"olb" = (
-/obj/structure/window/reinforced,
-/obj/vehicle/ridden/secway,
-/obj/item/key/security,
-/obj/machinery/door/window/eastleft{
- name = "Secway Docking Port"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/showroomfloor,
-/area/space/nearstation)
-"onN" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
+"nYB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"oru" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/maintenance/bar)
-"otR" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/area/maintenance/fore/secondary)
+"oaS" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/armory)
+"oce" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"odi" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/armory)
+"ofH" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"owf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 1;
- id_tag = "lobbyairlock";
- name = "Security Lobby";
- req_access_txt = "0"
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"ouy" = (
+/obj/structure/table/wood/poker,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"oyS" = (
+/obj/item/storage/pill_bottle/dice,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"oyk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"oFD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/reagent_containers/spray/cleaner,
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/maintenance/bar)
+"oHs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/red/side{
dir = 10
},
/area/security/brig)
-"oAQ" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"oHi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"oHU" = (
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"oQP" = (
-/obj/machinery/flasher{
- id = "Cell 3";
- pixel_x = -28
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
"oUh" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -53637,44 +53775,34 @@
/obj/machinery/disposal/bin,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"oUs" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- req_access_txt = "11"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"oWs" = (
+/obj/machinery/power/grounding_rod,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"pfR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
},
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"piG" = (
/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/security/armory)
+"pmD" = (
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"pvp" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"oZl" = (
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/crew_quarters/cryopod)
-"pdR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"plc" = (
-/obj/structure/sign/poster/official/safety_internals{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"plH" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"pAL" = (
/obj/machinery/door/window/brigdoor/security/cell{
dir = 4;
id = "Secure Cell";
@@ -53696,29 +53824,6 @@
dir = 8
},
/area/security/execution/transfer)
-"plY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"pmD" = (
-/turf/open/space/basic,
-/area/space/nearstation)
-"pzG" = (
-/obj/structure/sign/poster/random{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"pAu" = (
-/obj/machinery/vending/kink,
-/turf/open/floor/wood,
-/area/maintenance/bar)
"pHl" = (
/obj/structure/table,
/obj/item/storage/box/beakers{
@@ -53747,71 +53852,47 @@
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"pML" = (
-/obj/effect/spawner/lootdrop/keg,
-/turf/open/floor/wood,
-/area/maintenance/bar)
"pNx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/science/misc_lab)
-"pND" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot{
- dir = 2
+"pPZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"pNS" = (
-/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0"
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"pRh" = (
-/obj/structure/sign/poster/random{
- pixel_y = -32
+/area/security/brig)
+"pSC" = (
+/obj/machinery/door/window/brigdoor/security/cell{
+ id = "Cell 3";
+ name = "Cell 3"
},
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/area/maintenance/bar)
-"pXY" = (
-/obj/effect/turf_decal/stripes/white/line,
-/obj/effect/turf_decal/stripes/white/corner{
- dir = 1
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"pYB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/door_timer{
- id = "Secure Cell";
- name = "Secure Cell";
- pixel_y = -32
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
+/turf/open/floor/plating,
+/area/engine/engineering)
"qeQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"qiH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"qkd" = (
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/brig)
-"qli" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/space/nearstation)
"qpv" = (
/obj/machinery/light{
dir = 4
@@ -53819,159 +53900,49 @@
/obj/machinery/autolathe,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"qqN" = (
-/obj/machinery/light/small{
- dir = 8
+"qtN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/cryopod{
- tag = "icon-cryopod-open (EAST)";
- icon_state = "cryopod-open";
- dir = 4
- },
-/turf/open/floor/noslip,
-/area/crew_quarters/cryopod)
-"quv" = (
-/obj/machinery/flasher{
- id = "Cell 2";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"quH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/security/armory)
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"quT" = (
/obj/structure/lattice,
/obj/structure/grille/broken,
/turf/open/space/basic,
/area/space/nearstation)
-"qyA" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "briggate";
- name = "security shutters"
+"qzP" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/door/window/eastright{
- name = "Brig Desk";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"qWq" = (
-/turf/closed/wall,
-/area/space)
-"rgF" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/obj/structure/table,
-/obj/item/folder/white,
-/obj/item/pen,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"rhJ" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/device/assembly/signaler,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"riY" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Starboard Aft";
- dir = 1;
- network = list("engine")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"rmX" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"ruZ" = (
/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/armory)
-"rvK" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"ryt" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Brig Control";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/brig)
-"rDb" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/drone,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"rKP" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
/turf/open/floor/plating,
-/area/construction)
-"rMY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"rNn" = (
-/obj/machinery/power/grounding_rod,
-/turf/open/floor/plating/airless,
/area/engine/engineering)
-"rPW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Kill Chamber";
- req_access_txt = "55"
+"qAQ" = (
+/obj/structure/falsewall,
+/obj/effect/turf_decal/delivery/white,
+/turf/open/floor/plasteel/dark,
+/area/security/execution/transfer)
+"qDH" = (
+/obj/structure/bed,
+/obj/item/bedsheet/grey,
+/obj/effect/decal/cleanable/semen{
+ desc = "Blech.";
+ name = "dried semen"
},
-/obj/machinery/atmospherics/pipe/simple/general/visible{
+/obj/effect/spawner/lootdrop/costume,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/bar)
+"qIa" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/red/side{
dir = 4
},
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"rWu" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/bar)
-"rZV" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"saK" = (
-/obj/structure/closet/crate,
-/obj/item/target/alien,
-/obj/item/target/alien,
-/obj/item/target/clown,
-/obj/item/target/clown,
-/obj/item/target/syndicate,
-/obj/item/target/syndicate,
-/obj/item/gun/energy/laser/practice,
-/obj/item/gun/energy/laser/practice,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"spp" = (
+/area/security/brig)
+"qVU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "Singularity";
@@ -53985,180 +53956,77 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"srd" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 4
+"qYL" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/area/security/brig)
-"srs" = (
-/obj/structure/chair/stool,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"srA" = (
-/turf/open/floor/plasteel/purple/side,
-/area/crew_quarters/cryopod)
-"sxs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table,
-/obj/item/shovel/spade,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"sAz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-8"
},
/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"sGJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/area/engine/engineering)
+"rcD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/science/circuit)
+"rfW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/disposal/incinerator)
+"rjW" = (
+/obj/effect/landmark/secequipment,
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"rmX" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/beer,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"rre" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"rDl" = (
+/obj/structure/table/wood,
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
/area/maintenance/bar)
-"sHa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/brig)
-"sHr" = (
-/obj/structure/falsewall,
-/obj/effect/turf_decal/delivery/white,
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
-"sIY" = (
-/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"sLv" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"sOs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance/abandoned,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"sPi" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 1;
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"sSW" = (
-/obj/structure/chair/office/light,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"sWi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"sXy" = (
-/obj/machinery/door/airlock/external{
- name = "Security External Airlock";
- req_access_txt = "63"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+"rKP" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plating,
-/area/security/main)
-"tal" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/hallway/secondary/service)
-"tdl" = (
-/obj/machinery/camera/motion{
- c_tag = "Non-Lethal Armory Motion Sensor";
+/area/construction)
+"rRb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/turf_decal/stripes/end{
- dir = 8
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
},
-/turf/open/floor/plasteel,
-/area/security/armory)
-"tdt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore/secondary)
-"thu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
/area/maintenance/bar)
-"tkF" = (
-/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{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"tBz" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+"rRI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/closed/wall,
-/area/maintenance/fore/secondary)
-"tDP" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/space/nearstation)
-"tHc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"tMl" = (
-/obj/effect/turf_decal/loading_area,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"tPb" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"rUB" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"rVc" = (
/obj/structure/window/reinforced,
/obj/machinery/door/window/eastleft{
name = "Cyborg Docking Port"
@@ -54167,89 +54035,13 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"tQz" = (
-/obj/structure/sign/poster/official/no_erp,
-/turf/closed/wall,
-/area/maintenance/bar)
-"tYV" = (
-/obj/structure/table/wood/poker,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/item/storage/pill_bottle/dice,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"uaT" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/drinkingglasses,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"ugZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ujc" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"ujp" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"umq" = (
+"rWi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"umu" = (
-/obj/machinery/door_timer{
- id = "Cell 3";
- name = "Cell 3";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner,
-/area/security/brig)
-"uoB" = (
-/obj/structure/table/reinforced,
-/obj/item/device/multitool,
-/obj/item/screwdriver,
-/obj/machinery/camera{
- c_tag = "Circuitry Lab North";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"upn" = (
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/structure/table/wood,
/turf/open/floor/wood,
/area/maintenance/bar)
-"utQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"uuA" = (
+"rYe" = (
/obj/structure/table,
/obj/item/storage/toolbox/electrical{
pixel_x = 2;
@@ -54263,251 +54055,86 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"uvc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"uvy" = (
-/turf/closed/wall/r_wall,
-/area/space)
-"uAt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"uMX" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"uNu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
+"saK" = (
+/obj/structure/closet/crate,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/turf/open/floor/plasteel/white,
/area/science/circuit)
-"uTi" = (
-/obj/structure/table/reinforced,
-/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"
- },
+"siI" = (
/obj/item/paper_bin{
pixel_x = -3;
pixel_y = 7
},
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/brig)
-"uVS" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"vaY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/item/pen,
+/obj/machinery/newscaster{
+ pixel_x = 30
},
+/obj/structure/table/wood,
/turf/open/floor/wood,
/area/maintenance/bar)
-"vbD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "EVA Storage";
- req_access_txt = "18"
+"slk" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"vie" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"vxh" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 8;
- name = "8maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"vzp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"vAM" = (
-/obj/item/restraints/handcuffs/fake,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"vCb" = (
-/obj/machinery/rnd/protolathe/department/service,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"vCt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"vHQ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"vNJ" = (
-/obj/machinery/vending/clothing,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"vPg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
-/area/maintenance/fore/secondary)
-"vPE" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/libraryscanner,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"vRb" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"vXR" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"whS" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"wjf" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/closet/secure_closet/brig{
- id = "Secure Cell";
- name = "Secure Cell Locker"
- },
-/obj/effect/turf_decal/stripes/white/end{
- dir = 4
- },
-/obj/effect/turf_decal/delivery/white,
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
-"wkN" = (
-/turf/closed/wall,
-/area/science/circuit)
-"wqO" = (
-/obj/structure/rack,
-/obj/item/gun/energy/e_gun/dragnet,
-/obj/item/gun/energy/e_gun/dragnet,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/security/armory)
-"wrp" = (
-/obj/machinery/light{
+/area/maintenance/department/medical/morgue)
+"soK" = (
+/obj/effect/turf_decal/loading_area/white,
+/obj/effect/turf_decal/stripes/white/corner{
dir = 8
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/turf_decal/stripes/white/corner,
+/turf/open/floor/plasteel/dark,
+/area/security/execution/transfer)
+"ssC" = (
+/turf/open/floor/plasteel/purple/side,
+/area/crew_quarters/cryopod)
+"stI" = (
+/obj/item/lighter/greyscale,
+/obj/effect/decal/cleanable/semen{
+ desc = "Blech.";
+ name = "dried semen"
},
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/bar)
+"stR" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/cryopod";
+ dir = 4;
+ name = "Cryogenics APC";
+ pixel_x = 24
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/crew_quarters/cryopod)
+"sxs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/item/shovel/spade,
/turf/open/floor/plasteel/hydrofloor,
/area/hallway/secondary/service)
-"wrI" = (
-/obj/machinery/door/poddoor/shutters{
- id = "lowsecarmory";
- name = "Non-Lethal Armoury Shutter"
+"sxz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
},
-/obj/machinery/button/door{
- id = "lowsecarmory";
- name = "Non-Lethal Armory Shutters";
- pixel_y = 26;
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/main)
-"wvX" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/item/stock_parts/cell/super,
-/obj/item/stock_parts/cell/super,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"wBd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/hallway/secondary/service)
-"wMS" = (
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"szF" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/riot{
pixel_x = -3;
@@ -54539,117 +54166,115 @@
/obj/effect/turf_decal/bot_white,
/turf/open/floor/plasteel/dark,
/area/security/armory)
-"wUY" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"wXR" = (
+"sCR" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/armory)
-"xdq" = (
-/obj/structure/closet/l3closet/security,
-/turf/open/floor/plasteel/showroomfloor,
+/turf/open/floor/plating/airless,
/area/space/nearstation)
-"xgX" = (
-/obj/item/shard,
-/obj/item/wirecutters,
-/obj/item/wallframe/camera,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
+"sDk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"sFW" = (
+/turf/closed/wall,
/area/maintenance/bar)
-"xhV" = (
+"sJQ" = (
+/obj/structure/closet/bombcloset/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/space)
+"sLv" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/construction)
-"xiw" = (
-/obj/machinery/door/airlock{
- name = "Service Hall";
- req_access_txt = "0";
- req_one_access_txt = "25;26;35;28"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"xkI" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"xug" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"xwc" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"xwS" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/white/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
-"xIa" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"xJs" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"sOs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"xMh" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"xTa" = (
+/obj/machinery/door/airlock/maintenance/abandoned,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"sOy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/wood,
/area/maintenance/bar)
-"xVd" = (
-/obj/structure/bed,
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
-/turf/open/floor/plasteel,
+"sPM" = (
+/turf/closed/wall,
+/area/crew_quarters/cryopod)
+"sSW" = (
+/obj/structure/chair/office/light,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"sXy" = (
+/obj/machinery/door/airlock/external{
+ name = "Security External Airlock";
+ req_access_txt = "63"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"tal" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"tgx" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Secure Cell";
+ name = "Secure Cell Locker"
+ },
+/obj/effect/turf_decal/stripes/white/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery/white,
+/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
-"xZZ" = (
+"tmi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/brig)
+"tof" = (
+/obj/machinery/power/emitter/anchored{
+ dir = 4;
+ state = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"toZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"tyq" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -54665,41 +54290,496 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"yam" = (
-/obj/effect/landmark/start/atmospheric_technician,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"yck" = (
-/obj/structure/lattice,
-/turf/open/space,
+"tMh" = (
+/turf/closed/wall/r_wall,
+/area/security/armory)
+"tMl" = (
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"tNC" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/maintenance/bar)
+"tNK" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"tOq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"tQO" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/cryopod{
+ tag = "icon-cryopod-open (EAST)";
+ icon_state = "cryopod-open";
+ dir = 4
+ },
+/turf/open/floor/noslip,
+/area/crew_quarters/cryopod)
+"tRc" = (
+/obj/structure/sign/poster/random{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"tSN" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Starboard Aft";
+ dir = 1;
+ network = list("engine")
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"tVF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/abandoned{
+ req_access_txt = "0"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"tXL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"uaf" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/execution/transfer)
+"ujA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
+"umb" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"uow" = (
+/turf/closed/wall,
/area/space)
+"uoB" = (
+/obj/structure/table/reinforced,
+/obj/item/device/multitool,
+/obj/item/screwdriver,
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab North";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"utg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 2;
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/brig)
+"utm" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"utC" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"uut" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"uwV" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"uze" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"uAb" = (
+/obj/effect/spawner/lootdrop/keg,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"uAc" = (
+/obj/structure/window/reinforced,
+/obj/vehicle/ridden/secway,
+/obj/item/key/security,
+/obj/machinery/door/window/eastleft{
+ name = "Secway Docking Port"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/showroomfloor,
+/area/space/nearstation)
+"uDn" = (
+/obj/machinery/vending/autodrobe,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"uER" = (
+/obj/structure/table/reinforced,
+/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/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/brig)
+"uNu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"uPT" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"uVS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"uYC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"vbD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "EVA Storage";
+ req_access_txt = "18"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"vmf" = (
+/obj/structure/falsewall,
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"vxh" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 8;
+ name = "8maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"vzp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vzq" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"vCb" = (
+/obj/machinery/rnd/production/techfab/department/service,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"vCt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vMV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
+"vPg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"vPE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/libraryscanner,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vPG" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"waV" = (
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/item/crowbar,
+/obj/item/device/electropack/shockcollar,
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"wdZ" = (
+/turf/open/floor/plasteel/dark,
+/area/security/processing)
+"wkN" = (
+/turf/closed/wall,
+/area/science/circuit)
+"wom" = (
+/obj/machinery/cryopod{
+ tag = "icon-cryopod-open (EAST)";
+ icon_state = "cryopod-open";
+ dir = 4
+ },
+/turf/open/floor/noslip,
+/area/crew_quarters/cryopod)
+"wrp" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"wvX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"wBd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"wEi" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"wFC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"wHz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"wRi" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/space)
+"wTe" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"wUk" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"wUY" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"wWq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"wZZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"xhV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/construction)
+"xiw" = (
+/obj/machinery/door/airlock{
+ name = "Service Hall";
+ req_one_access_txt = "25;26;35;28"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"xiB" = (
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"xlB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Armory Motion Sensor";
+ dir = 2;
+ name = "motion-sensitive security camera"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"xDv" = (
+/obj/structure/closet/l3closet/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/space/nearstation)
+"xEu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"xIa" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"xSp" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/brig)
+"xYs" = (
+/obj/structure/chair/stool,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -35
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
"ycu" = (
/obj/structure/cable{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"yeT" = (
-/obj/effect/landmark/secequipment,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"yfv" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
-"ykh" = (
-/obj/machinery/flasher/portable,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/security/armory)
-"ymd" = (
-/turf/open/floor/plasteel/dark,
-/area/security/processing)
(1,1,1) = {"
aaa
@@ -74134,7 +74214,7 @@ aaa
aaa
bCq
bPS
-bRd
+aad
bPS
bPS
bCq
@@ -76192,20 +76272,20 @@ bCq
bPY
cOw
bCq
-lWz
-lWz
-lWz
-lWz
-lWz
-daq
-lWz
-lWz
-lWz
-lWz
-lWz
-lWz
-lWz
-lWz
+sFW
+sFW
+sFW
+sFW
+sFW
+ksK
+sFW
+sFW
+sFW
+sFW
+sFW
+sFW
+sFW
+sFW
bUs
bLv
aaa
@@ -76449,20 +76529,20 @@ bCq
bPX
bRg
bRg
-lWz
-nHg
+sFW
+nAW
bVG
-utQ
-vRb
-nHg
-pML
-lWz
-nHg
-pzG
+uYC
+fPq
+nAW
+uAb
+sFW
+nAW
+tRc
bVG
-nHg
-ody
-lWz
+nAW
+hpY
+sFW
bUs
bLv
aaa
@@ -76706,20 +76786,20 @@ bLv
bQa
bHE
bHE
-lWz
-iun
-ilg
-gHZ
-uvc
-sGJ
-uvc
-pNS
-uvc
-uvc
-rMY
-eGa
-lxM
-lWz
+sFW
+get
+uut
+jlZ
+iDC
+imZ
+iDC
+dnc
+iDC
+iDC
+toZ
+tNC
+dAs
+sFW
bUs
bLv
aaf
@@ -76963,20 +77043,20 @@ bLv
bPZ
bHE
bHE
-sIY
-vaY
-whS
-gBe
-gnt
-xwc
-lFR
-jaa
-lFR
-gEu
-ujp
+hNj
+rWi
+mkG
+vzq
+mdX
+pvp
+mTC
+mlj
+mTC
+dFc
+fDs
cCa
-nHg
-lWz
+nAW
+sFW
bUs
bLv
aaa
@@ -77220,20 +77300,20 @@ bLv
bHE
bHE
bSs
-lWz
-umq
-vXR
-rvK
-jwO
-vXR
-nHg
-tQz
-rWu
+sFW
+rRb
+ofH
+rDl
+cIK
+ofH
+nAW
+lkC
+hXw
cCa
-fXR
-iZz
-muS
-lWz
+kqE
+lgs
+diu
+sFW
bUs
bLv
aaa
@@ -77477,20 +77557,20 @@ bCq
bHE
bRh
bLu
-lWz
-jvH
-kEo
-thu
-xug
-lNK
-fNa
-lWz
-nHg
-xkI
-fXR
-iZz
-srs
-lWz
+sFW
+jEl
+utm
+eCQ
+fSk
+sOy
+lkA
+sFW
+nAW
+wTe
+kqE
+lgs
+xYs
+sFW
bUs
bLv
aaf
@@ -77734,20 +77814,20 @@ bCq
bOK
bCq
bCq
-lWz
-mxj
-fIx
-upn
-cmR
-uaT
-lWz
-lWz
-nHg
+sFW
+tVF
+gGR
+fWC
+vPG
+hik
+sFW
+sFW
+nAW
cCa
-tYV
-izg
+ouy
+cKY
cCa
-lWz
+sFW
bUs
bLv
aaa
@@ -77911,13 +77991,13 @@ abc
aea
aeH
aft
-sHr
-fmW
-xwS
-yfv
+qAQ
+soK
+mUH
+uaf
abc
-hCi
-hCi
+lkm
+lkm
aaa
aiU
aln
@@ -77992,19 +78072,19 @@ bHE
bLv
aaa
bLv
-qiH
-fIx
-lWz
-lWz
-lWz
-lWz
-nHg
-nHg
-nHg
-lzJ
+nrT
+gGR
+sFW
+sFW
+sFW
+sFW
+nAW
+nAW
+nAW
+nQE
cCa
-pRh
-lWz
+htN
+sFW
bUs
bLv
aaa
@@ -78170,18 +78250,18 @@ aeJ
afw
abc
abc
-eBn
-pXY
+nNQ
+eLY
abc
aaf
aaf
aaf
aiU
-ymd
+wdZ
aiU
aaa
aiU
-ymd
+wdZ
aiU
aaf
aaf
@@ -78249,19 +78329,19 @@ bHE
bLv
aaf
bLv
-qiH
-fIx
-vAM
-nYI
-nGs
-mHd
-nHg
-rWu
-eGa
-xTa
-nHg
-nHg
-lWz
+nrT
+gGR
+aEt
+waV
+stI
+vmf
+nAW
+hXw
+tNC
+nvm
+nAW
+nAW
+sFW
bUs
bLv
aaf
@@ -78277,7 +78357,7 @@ cjJ
aaa
aaa
crn
-pmD
+aaa
aaa
aaa
aaa
@@ -78427,8 +78507,8 @@ aeI
afv
agf
abc
-wjf
-plH
+tgx
+pAL
abc
aiT
aiT
@@ -78506,19 +78586,19 @@ bLv
bCq
aaa
bLv
-qiH
-fIx
-xgX
-cKh
-rhJ
-lWz
-vNJ
-cEm
-kyO
-kTn
-kXw
-pAu
-lWz
+nrT
+gGR
+kuC
+qDH
+fnP
+sFW
+uwV
+uDn
+siI
+oFD
+nBt
+eYQ
+sFW
bUs
bCq
aaa
@@ -78534,7 +78614,7 @@ cjJ
aaa
aaa
crn
-pmD
+aaa
aaa
aaa
aaa
@@ -78684,9 +78764,9 @@ aeL
afy
agh
abc
-mXs
-mXs
-mXs
+gvx
+gvx
+gvx
aiV
ajs
akb
@@ -78764,17 +78844,17 @@ aaa
aaa
bTB
bUv
-obC
-oru
-oru
-oru
-oru
-oru
-oru
-oru
-oru
-oru
-oru
+uze
+kPh
+kPh
+kPh
+kPh
+kPh
+kPh
+kPh
+kPh
+kPh
+kPh
car
bUs
bCq
@@ -78791,7 +78871,7 @@ cjJ
aaf
aaf
cig
-pmD
+aaa
aaa
aaa
aaa
@@ -78941,9 +79021,9 @@ aeK
afx
agg
abc
-mXs
-xVd
-mXs
+gvx
+gKN
+gvx
aiV
ajr
aka
@@ -79198,9 +79278,9 @@ aeN
afA
afA
afA
-mXs
-mXs
-mXs
+gvx
+gvx
+gvx
aiV
aju
akd
@@ -79562,7 +79642,7 @@ cgR
cgR
cqN
cro
-pmD
+aaa
aaa
aaa
aaa
@@ -79819,7 +79899,7 @@ ciN
cji
cDZ
crr
-pmD
+crJ
aaa
aaa
aaa
@@ -80076,7 +80156,7 @@ cnv
cDB
cqP
crq
-pmD
+crJ
aaa
aaa
aaa
@@ -80212,7 +80292,7 @@ aak
aap
aay
aaD
-aat
+aau
aat
aat
aat
@@ -80347,7 +80427,7 @@ gXs
gXs
gXs
gXs
-hCi
+lkm
aaa
aaa
aaa
@@ -80590,22 +80670,22 @@ cpX
cqz
cqQ
ccw
-pmD
+crJ
aaa
aaa
-uvy
-uvy
-uvy
+nyw
+nyw
+nyw
aaa
aaa
aaa
aaa
aaa
-uvy
-uvy
-uvy
-hCi
-hCi
+nyw
+nyw
+nyw
+lkm
+lkm
aaa
aaa
aaa
@@ -80847,24 +80927,24 @@ clJ
cig
cig
ccw
-pmD
-pmD
-uvy
-uvy
-uvy
-uvy
-uvy
+crJ
+crJ
+nyw
+nyw
+nyw
+nyw
+nyw
aaa
aaa
aaa
-uvy
-uvy
-uvy
-uvy
-uvy
-hCi
-hCi
-hCi
+nyw
+nyw
+nyw
+nyw
+nyw
+lkm
+lkm
+lkm
aaa
aaa
aaa
@@ -81098,7 +81178,7 @@ ccw
ccw
ccw
cnZ
-oHi
+lmZ
cpt
cpt
cpt
@@ -81120,8 +81200,8 @@ ccw
ccw
ccw
ccw
-uvy
-hCi
+nyw
+lkm
aaa
aaa
aaa
@@ -81262,7 +81342,7 @@ auj
akl
akO
alx
-mnX
+pfR
amg
aiX
anw
@@ -81357,11 +81437,11 @@ cnt
cob
coL
cDo
-oaS
+xiB
cgR
cqT
ccw
-crJ
+ghy
ccw
csb
cFn
@@ -81373,12 +81453,12 @@ ccw
ccw
cGE
cFn
-jZh
-mzz
-mzz
+mGv
+fAn
+fAn
ccw
-uvy
-yck
+nyw
+cQG
aaa
aaa
aaa
@@ -81616,26 +81696,26 @@ coK
cpu
cMm
ckH
-uAt
-hMa
+wWq
+pYB
crK
cEK
csa
-gre
-mQs
-gre
+dlj
+tof
+dlj
cGr
-vHQ
-hDa
-vHQ
-mLm
-gre
-mQs
-gre
-gre
+sDk
+kOs
+sDk
+iWY
+dlj
+tof
+dlj
+dlj
ccw
-uvy
-hCi
+nyw
+lkm
aaa
aaa
aaa
@@ -81774,9 +81854,9 @@ aiF
agj
ajD
akm
-cxR
+jrJ
aly
-quv
+bhP
amQ
aiX
anw
@@ -81871,28 +81951,28 @@ cgR
cnZ
chF
ciO
-oaS
+xiB
cgR
cqT
ccw
cig
ccw
cFb
-gre
+dlj
cFI
-gre
-gre
-gre
-gre
-gre
-gre
-gre
+dlj
+dlj
+dlj
+dlj
+dlj
+dlj
+dlj
cFI
-gre
-iqO
+dlj
+iVO
ccw
-uvy
-fdi
+nyw
+mFn
aaa
aaa
aaa
@@ -82008,7 +82088,7 @@ aaa
aag
aaf
aai
-aau
+wEi
aaA
aaG
aaK
@@ -82033,7 +82113,7 @@ aja
akl
akP
alx
-mnX
+pfR
ami
aiX
anw
@@ -82126,30 +82206,30 @@ ceZ
clQ
cgR
cnZ
-oHi
+lmZ
cgR
cgR
cgR
cqT
-fFB
+dxw
cEs
-gre
-rNn
+dlj
+oWs
cAp
-xJs
+qtN
cAo
-xJs
+qtN
cAo
-xJs
+qtN
cAo
-xJs
-cQZ
-gre
-gre
-gre
+qtN
+jMi
+dlj
+dlj
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -82287,7 +82367,7 @@ agP
agP
aiz
ajg
-jvX
+hBF
akQ
agj
agj
@@ -82383,30 +82463,30 @@ cTd
ckF
ckF
cgK
-oHi
+lmZ
cgR
cgR
cgR
cqT
-fFB
+dxw
csP
-gre
-gre
+dlj
+dlj
cAq
-mWO
+cFJ
cSH
-mWO
+cFJ
cSH
-mWO
+cFJ
cSH
-mWO
+cFJ
cSH
-mWO
-gre
-gre
+cFJ
+dlj
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -82525,7 +82605,7 @@ aaa
aaa
aaf
aaf
-ddq
+rUB
aaf
aai
abi
@@ -82547,7 +82627,7 @@ ajb
ajF
akN
alw
-oQP
+jXD
amQ
aiX
anw
@@ -82645,10 +82725,10 @@ cpx
cqd
cjc
cqU
-fFB
+dxw
csP
-gre
-rNn
+dlj
+oWs
cAq
cFK
aoV
@@ -82659,11 +82739,11 @@ aaa
aoV
aoV
cFK
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaf
aaa
aaa
@@ -82798,16 +82878,16 @@ agn
agR
agn
agR
-elx
+kIZ
aiX
-ese
+kvn
akv
-lWm
-mnl
+pSC
+lou
aww
amk
aiX
-ejX
+nrJ
aov
aph
aqb
@@ -82900,7 +82980,7 @@ cnZ
cDh
cpy
ccw
-hyz
+kbf
ccw
ccw
cqY
@@ -82910,17 +82990,17 @@ cAq
aoV
aoV
aoV
-hCi
+lkm
aaf
aaa
aoV
aoV
aoV
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -83039,26 +83119,26 @@ aaa
aaa
aaa
aaf
-ddq
+rUB
aaf
-nnM
-ykh
-tdl
-myd
+tMh
+aaT
+fVu
+umb
aaZ
cpg
acv
adi
-dRy
+jFG
aaZ
aeW
-xZZ
+tyq
ahv
ahQ
aiI
aiH
ajI
-umu
+mAD
akQ
agj
agj
@@ -83158,10 +83238,10 @@ cDh
ccw
cqf
cqD
-oUs
+dCs
crs
cEv
-ugZ
+msk
cqY
cAq
aoV
@@ -83173,11 +83253,11 @@ aaa
aaa
aoV
aoV
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -83296,29 +83376,29 @@ aaa
aaa
aaa
aaf
-ddq
+rUB
aaf
-nnM
-ykh
-ruZ
-myd
+tMh
+aaT
+oaS
+umb
aaZ
acl
cxA
acL
-rDb
+fbL
aaZ
agp
agT
ahx
ahS
aiK
-uTi
-ese
+uER
+kvn
akm
akT
aly
-nys
+mDW
amQ
aiX
anw
@@ -83412,29 +83492,29 @@ cmL
cgR
cnZ
chX
-spp
+qVU
cqh
cqF
cra
crI
cEw
-ejb
+qzP
cqY
cAq
aaa
aaa
aaa
-cDO
+wZZ
cGU
-sWi
+iyf
aaa
-hCi
+lkm
cFK
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aae
@@ -83553,12 +83633,12 @@ aaa
aaa
aaa
aaf
-ddq
+rUB
aaf
-nnM
-ykh
-fiq
-ofN
+tMh
+aaT
+odi
+eXD
aaZ
ack
adk
@@ -83575,13 +83655,13 @@ ajI
akl
akS
alx
-mnX
+pfR
amp
aiX
anS
aoy
-plY
-eoF
+wFC
+nRD
anz
anz
anz
@@ -83668,7 +83748,7 @@ clJ
cmL
cnv
cnZ
-eHD
+rRI
ccw
cqg
cqE
@@ -83676,22 +83756,22 @@ cqZ
crt
cMH
cAm
-mMg
+tNK
cMN
gXs
aaf
aaf
-kNw
+sCR
cGV
-tHc
+gmz
aaf
aaf
gXs
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -83810,14 +83890,14 @@ aaa
aaa
aaa
aaf
-ddq
+rUB
aaf
-nnM
-ykh
-ruZ
-otR
+tMh
+aaT
+oaS
+utC
aaZ
-cVk
+xlB
acM
adQ
cwM
@@ -83827,8 +83907,8 @@ agU
ahy
ahX
aiL
-cLr
-dUn
+xSp
+pPZ
akq
akQ
agj
@@ -83925,30 +84005,30 @@ ccw
cmN
cgR
cnZ
-eHD
-hyz
+rRI
+kbf
cqj
cSG
crb
cru
cEx
-oAQ
+lTm
cqY
cAq
cFK
-hCi
+lkm
aaa
-hmW
-sAz
-ieW
+sxz
+oyk
+mtY
aaa
aaa
aaa
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -84067,14 +84147,14 @@ aaa
aaa
aaa
aaf
-ddq
+rUB
aaf
-nnM
-nAv
-quH
-otR
+tMh
+fPE
+piG
+utC
aaZ
-onN
+gva
coS
aet
cxA
@@ -84084,18 +84164,18 @@ agt
ahz
aie
agt
-ryt
-cYR
+jyK
+erb
akp
akU
alz
aml
amT
aiX
-cKI
-owf
+gZp
+jKG
apl
-tBz
+jCY
aqc
aqc
aqc
@@ -84182,7 +84262,7 @@ clM
cfz
cgR
cnZ
-eHD
+rRI
ccw
cqi
cMD
@@ -84201,11 +84281,11 @@ aaa
aaa
aoV
aoV
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -84324,14 +84404,14 @@ aaa
aaa
aaa
aaf
-ddq
+rUB
aaf
-nnM
-wqO
-wXR
-uMX
+tMh
+inb
+mwi
+vPg
abQ
-nLS
+gvi
adj
arc
blT
@@ -84342,15 +84422,15 @@ cxk
aig
aiM
aiX
-eqj
-nsq
-eiQ
+tmi
+kwU
+hjI
alB
amn
amV
-tkF
+hHa
aiG
-qkd
+ndn
aod
aqf
ahT
@@ -84360,11 +84440,11 @@ ahT
ahT
awn
axF
-tdt
-tdt
-tdt
-tdt
-amI
+vMV
+vMV
+vMV
+vMV
+stR
anF
anF
aoa
@@ -84439,10 +84519,10 @@ cfa
cje
cgR
cnZ
-eHD
+rRI
cpy
ccw
-hyz
+kbf
ccw
ccw
cqY
@@ -84454,15 +84534,15 @@ aoV
aaa
aaa
aaf
-hCi
+lkm
aaa
aoV
aoV
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -84581,14 +84661,14 @@ aaa
aaa
aaa
aaf
-ddq
+rUB
aaf
-nnM
-mnG
-ilT
-fsC
+tMh
+jcD
+iev
+erH
abN
-pdR
+dFm
acF
acF
aes
@@ -84599,13 +84679,13 @@ ahB
aHp
agn
aiX
-jKI
-sHa
+ivo
+utg
amS
alA
-qyA
+hnm
amm
-alN
+eyV
anT
anT
aod
@@ -84619,10 +84699,10 @@ arf
arf
arf
arf
-fgi
-fgi
-fgi
-fgi
+sPM
+sPM
+sPM
+sPM
anF
ahn
aJn
@@ -84701,10 +84781,10 @@ cpD
cDw
cDF
cEa
-fFB
+dxw
csP
-gre
-rNn
+dlj
+oWs
cAq
cFK
aoV
@@ -84715,11 +84795,11 @@ cFK
aoV
aoV
cFK
-mWO
-gre
+cFJ
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaf
aaa
aaa
@@ -84838,12 +84918,12 @@ aaa
aaa
aaa
aaf
-ddq
+rUB
aaf
-nnM
-wMS
-kDA
-kkQ
+tMh
+szF
+aCU
+kEw
aci
acm
cpA
@@ -84860,10 +84940,10 @@ ajJ
akr
akX
aje
-gKd
-gKd
-gKd
-gKd
+fpI
+fpI
+fpI
+fpI
aoB
aod
aqe
@@ -84876,10 +84956,10 @@ atf
arf
aqa
atf
-fgi
-qqN
-mhD
-fgi
+sPM
+tQO
+wom
+sPM
anF
ahn
aaa
@@ -84958,25 +85038,25 @@ cgR
cgR
cgR
cqT
-fFB
+dxw
csP
-gre
-gre
+dlj
+dlj
cAq
-mWO
+cFJ
cSK
-mWO
+cFJ
cSK
-mWO
+cFJ
cSK
-mWO
+cFJ
cSK
-mWO
-gre
-gre
+cFJ
+dlj
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -85097,9 +85177,9 @@ aaf
aaf
ctv
ctv
-uvy
+nyw
adR
-wrI
+mxQ
avB
aaZ
aaZ
@@ -85118,12 +85198,12 @@ ahY
akX
ajc
alC
-gKd
-gKd
-oyS
-hbX
-mSu
-vPg
+fpI
+fpI
+oHs
+hfY
+nYB
+ujA
arf
apY
ate
@@ -85133,10 +85213,10 @@ ath
arf
apY
ath
-fgi
-oZl
-srA
-fgi
+sPM
+gQx
+ssC
+sPM
anF
ahn
aaa
@@ -85215,25 +85295,25 @@ cnx
cDx
cqb
cqT
-fFB
+dxw
cEs
-gre
-rNn
+dlj
+oWs
cAr
-xJs
+qtN
cGh
-xJs
+qtN
cGh
-xJs
+qtN
cGh
-xJs
-vie
-gre
-gre
-gre
+qtN
+rre
+dlj
+dlj
+dlj
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -85353,9 +85433,9 @@ aaa
aaa
aaa
atS
-olb
-gqJ
-tPb
+uAc
+eXc
+rVc
abO
abO
acO
@@ -85370,14 +85450,14 @@ ahA
ahZ
adR
aiQ
-ese
+kvn
akt
-sPi
-dLQ
+kyp
+iUe
ajc
-qkd
+ndn
aiG
-hSW
+pmD
aoD
aod
aqe
@@ -85390,10 +85470,10 @@ ath
arf
ayV
ath
-fgi
+sPM
aCd
-srA
-fgi
+ssC
+sPM
anF
ahn
aJw
@@ -85476,21 +85556,21 @@ ccw
ccw
ccw
crc
-gre
+dlj
cBR
-gre
-gre
-gre
-gre
-gre
-gre
-gre
+dlj
+dlj
+dlj
+dlj
+dlj
+dlj
+dlj
cBR
-gre
-riY
+dlj
+tSN
ccw
-uvy
-aaT
+nyw
+ldw
aaa
aaa
aaa
@@ -85609,9 +85689,9 @@ aaa
aaa
aaa
aaa
-lBd
-qli
-mXj
+iFU
+jWi
+wRi
abO
abO
abO
@@ -85630,11 +85710,11 @@ ajf
ajK
aks
akY
-srd
+wUk
ajc
-lik
+gAl
alC
-hSW
+pmD
aoC
aod
aqe
@@ -85647,10 +85727,10 @@ awo
arf
asd
aAb
-fgi
-lza
-srA
-fgi
+sPM
+myR
+ssC
+sPM
aoa
ahn
aJv
@@ -85727,27 +85807,27 @@ cDe
cDk
coc
cqa
-uuA
-uAt
-hMa
+rYe
+wWq
+pYB
czF
cEK
csd
-gre
+dlj
cFU
-gre
+dlj
cGE
-vHQ
+sDk
cGZ
-vHQ
+sDk
csx
-gre
+dlj
cFU
-gre
-gre
+dlj
+dlj
ccw
-uvy
-hCi
+nyw
+lkm
aaa
aaa
aaa
@@ -85866,14 +85946,14 @@ aaa
aaa
aaa
aaa
-qWq
-qli
-mXj
-yeT
-yeT
-yeT
-yeT
-yeT
+uow
+jWi
+wRi
+rjW
+rjW
+rjW
+rjW
+rjW
abO
aew
afe
@@ -85885,13 +85965,13 @@ aia
aiP
aiR
ajB
-gtB
+dVC
aiX
akz
alf
-iNt
-iNt
-dfW
+lXp
+lXp
+ldy
aoF
apo
aqh
@@ -85905,8 +85985,8 @@ aul
azc
atj
aAX
-aul
-aul
+azc
+atj
aFe
aul
aHT
@@ -85991,20 +86071,20 @@ crM
ccw
crV
cFn
-xMh
+qYL
cFn
-mLm
+iWY
ccw
ccw
ccw
cGr
cFn
-rZV
-mzz
-mzz
+kPB
+fAn
+fAn
ccw
-uvy
-yck
+nyw
+cQG
aaf
aaa
aaa
@@ -86123,9 +86203,9 @@ aaa
aaa
aaa
aaf
-tDP
-qli
-qli
+dcQ
+jWi
+jWi
abO
abO
acp
@@ -86146,11 +86226,11 @@ aku
aiX
alE
amq
-ujc
-nwx
-gUO
+iyX
+qIa
+fAq
aoE
-dAS
+gLD
aqg
aun
asf
@@ -86259,9 +86339,9 @@ ccw
ccw
ccw
ccw
-jyX
-uvy
-hCi
+maf
+nyw
+lkm
aaa
aaa
aaa
@@ -86380,14 +86460,14 @@ aaa
aaa
aaa
aaa
-qWq
-hgP
-xdq
-pND
+uow
+sJQ
+xDv
+lJX
abR
-pND
-pND
-pND
+lJX
+lJX
+lJX
abl
abp
abp
@@ -86507,18 +86587,18 @@ ccw
ccw
ccw
ccw
-hQd
-pmD
-pmD
-pmD
-uvy
-uvy
-uvy
-uvy
-uvy
+kgu
+crJ
+crJ
+crJ
+nyw
+nyw
+nyw
+nyw
+nyw
aaa
-yck
-hCi
+cQG
+lkm
aaa
aaa
aaa
@@ -86768,13 +86848,13 @@ aaa
aaa
aaa
aaa
-pmD
-uvy
-uvy
-uvy
-hCi
-hCi
-hCi
+crJ
+nyw
+nyw
+nyw
+lkm
+lkm
+lkm
aaa
aaa
aaa
@@ -86997,7 +87077,7 @@ caE
cbA
ccy
bOd
-yam
+gMx
bQu
cfO
cgW
@@ -87019,17 +87099,17 @@ ccw
crX
cfK
aag
-hCi
-hCi
-hCi
-hCi
-hCi
-hCi
+lkm
+lkm
+lkm
+lkm
+lkm
+lkm
gXs
gXs
gXs
gXs
-hCi
+lkm
aaa
aaa
aae
@@ -87242,7 +87322,7 @@ bIF
bOZ
bQp
bRA
-yam
+gMx
bTO
bUL
bVU
@@ -89214,7 +89294,7 @@ aaa
aaf
aag
acU
-afn
+adr
sXy
aeC
afn
@@ -90002,7 +90082,7 @@ aaa
aaa
aaf
ahn
-anF
+anG
aoe
aoL
apy
@@ -91826,10 +91906,10 @@ aKz
aKR
aND
aJC
-aPP
+aab
aRg
aQc
-aTa
+aac
aQc
aXk
aQc
@@ -92656,11 +92736,11 @@ cfl
cfZ
cki
cld
+eHI
cjt
-cjr
csq
-cmd
-cmd
+xEu
+wHz
cmd
cmd
cmd
@@ -92911,12 +92991,12 @@ cdF
ceD
cfk
cfY
-cjr
+rfW
ckj
cjs
cle
cli
-cmc
+uPT
cmY
cmc
cop
@@ -93685,10 +93765,10 @@ cfj
cfj
cfj
cjx
-cfj
-cfj
-cmd
-cmd
+cfl
+cfl
+dqu
+tXL
cmd
cos
cmd
@@ -96474,7 +96554,7 @@ cTS
cTK
bpQ
cTK
-cTJ
+slk
btm
buy
bvz
@@ -97019,8 +97099,8 @@ bRT
bEm
bEm
bDb
-iRn
-eeP
+cfr
+cho
bDb
aaa
cNW
@@ -97261,7 +97341,7 @@ bJJ
bKY
bMi
bNo
-foQ
+bIP
bPA
bJN
bRU
@@ -97276,9 +97356,9 @@ bRU
bEm
bEm
bDb
-jxR
-mmW
-kHd
+cgi
+chq
+ccQ
aaa
cOT
cQB
@@ -97533,9 +97613,9 @@ bRU
bEm
cBz
bDb
-jxR
-mmW
-kHd
+cgi
+chq
+ccQ
aaa
cOT
cQB
@@ -98047,8 +98127,8 @@ bRV
bTa
cbR
bDb
-hfn
-rPW
+cgk
+chr
bDb
aaa
cNW
@@ -98303,10 +98383,10 @@ bZa
bMi
bMi
bRZ
-plc
-kGu
-cyA
-kHd
+cTY
+cTZ
+chu
+ccQ
aaf
cOT
cQB
@@ -98560,12 +98640,12 @@ bTc
bRX
bTc
cbT
-kHN
-kHN
-dkZ
-lqu
+ccP
+ccP
+cht
+ckn
csk
-nuC
+czQ
czU
czZ
cOT
@@ -98817,10 +98897,10 @@ bZb
bRZ
bMi
bMi
-ock
-eiu
-rgF
-kHd
+cfy
+cgn
+cjB
+ccQ
aaf
cOT
cgm
@@ -102652,7 +102732,7 @@ bCi
bvK
bEw
bFU
-bFU
+bEL
bGk
bJW
bEC
@@ -102909,14 +102989,14 @@ aGs
bvK
bBF
bFU
-bEL
+bFT
bGz
bJZ
-bEC
+kzT
bMx
bNw
bOF
-bEC
+fcG
bQW
bSj
bTn
@@ -103169,11 +103249,11 @@ bFU
bFT
bFU
bJY
-bEC
+bEM
bMv
bNv
bMv
-bSl
+rcD
wkN
wkN
wkN
@@ -103423,14 +103503,14 @@ bzO
bqe
bEB
bFW
-bFT
-bFU
-bFU
+oce
+tOq
+kOw
bLi
bMz
bNy
bOH
-wkN
+dvO
bQY
vzp
bTo
@@ -103683,11 +103763,11 @@ bFV
bFT
bGA
bHg
-bFU
+bHg
bMy
bNx
bOG
-wkN
+jMF
uoB
bSk
bXs
diff --git a/_maps/cit_map_files/Deltastation/DeltaStation2.dmm b/_maps/cit_map_files/Deltastation/DeltaStation2.dmm
index a95d74ee74..d313f2e239 100644
--- a/_maps/cit_map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/cit_map_files/Deltastation/DeltaStation2.dmm
@@ -112,6 +112,18 @@
/obj/structure/cable,
/turf/open/space,
/area/solar/starboard/fore)
+"aap" = (
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 1
+ },
+/obj/structure/table/wood/poker,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/abandoned_gambling_den)
"aas" = (
/obj/docking_port/stationary/random{
id = "pod_lavaland1";
@@ -1312,7 +1324,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"afV" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
@@ -1561,7 +1573,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Auxiliary Construction Zone";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1608,7 +1619,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Auxiliary Construction Zone";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/effect/turf_decal/stripes/line{
@@ -1808,7 +1818,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/effect/turf_decal/stripes/line{
@@ -3648,7 +3657,6 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/vending/kink,
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"amQ" = (
@@ -5583,7 +5591,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
name = "Reflector Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5609,7 +5616,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
name = "Reflector Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -9182,6 +9188,10 @@
},
/turf/open/floor/circuit/green,
/area/engine/supermatter)
+"ayK" = (
+/obj/machinery/power/supermatter_shard/crystal/engine,
+/turf/open/floor/engine,
+/area/engine/supermatter)
"ayL" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
@@ -9760,7 +9770,7 @@
},
/obj/machinery/door/airlock/highsecurity{
name = "Emergency Access";
- req_access_txt = "24;10"
+ req_one_access_txt = "24;10"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -10128,7 +10138,6 @@
/obj/machinery/door/airlock/atmos/glass{
heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -11393,7 +11402,6 @@
},
/obj/machinery/door/airlock/maintenance_hatch{
name = "Service Hallway Maintenance Hatch";
- req_access_txt = "0";
req_one_access_txt = "12;25;28;46"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12381,7 +12389,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
@@ -13625,8 +13632,6 @@
},
/obj/machinery/door/airlock/external{
name = "External Solar Access";
- req_access_txt = "0";
- req_one_access = null;
req_one_access_txt = "13; 24; 10"
},
/obj/effect/turf_decal/stripes/line{
@@ -13655,8 +13660,6 @@
},
/obj/machinery/door/airlock/external{
name = "External Solar Access";
- req_access_txt = "0";
- req_one_access = null;
req_one_access_txt = "13; 24; 10"
},
/obj/effect/turf_decal/stripes/line{
@@ -13712,8 +13715,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/atmos{
name = "Port Bow Solar Access";
- req_access_txt = "0";
- req_one_access = null;
req_one_access_txt = "13; 24"
},
/obj/structure/cable/white{
@@ -13857,7 +13858,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -13882,7 +13882,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Engine Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -13920,7 +13919,6 @@
},
/obj/machinery/door/airlock/atmos/glass{
name = "Power Monitoring";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
@@ -14992,7 +14990,9 @@
/turf/open/space,
/area/space/nearstation)
"aLc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"aLd" = (
@@ -15240,7 +15240,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/wood,
@@ -15531,11 +15530,6 @@
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/cryopod{
- tag = "icon-cryopod-open (WEST)";
- icon_state = "cryopod-open";
- dir = 8
- },
/turf/open/floor/plasteel/red/corner{
dir = 1
},
@@ -15635,7 +15629,7 @@
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"aMu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 4
},
/turf/open/floor/engine/vacuum,
@@ -15647,21 +15641,6 @@
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"aMw" = (
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- layer = 3.1;
- name = "Incinerator airlock control";
- pixel_x = -24;
- pixel_y = -8
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
- name = "Incinerator airlock control";
- pixel_x = 24;
- pixel_y = -8
- },
/obj/machinery/atmospherics/components/binary/pump{
dir = 4
},
@@ -15669,6 +15648,12 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airlock_sensor{
+ id_tag = "incinerator_airlock_sensor";
+ master_tag = "incinerator_airlock_control";
+ pixel_y = 24
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"aMx" = (
@@ -15747,7 +15732,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -15773,7 +15757,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Engine Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -16293,13 +16276,15 @@
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"aNT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 2;
+ frequency = 1449;
+ id = "incinerator_airlock_pump"
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"aNU" = (
@@ -16967,8 +16952,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "mix_in";
- pixel_y = 1
+ id = "mix_in"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine/vacuum,
@@ -16985,16 +16969,20 @@
dir = 8
},
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"aPA" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idInterior = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Incinerator Access Console";
+ airpump_tag = "incinerator_airlock_pump";
+ exterior_door_tag = "incinerator_airlock_exterior";
+ id_tag = "incinerator_access_control";
+ interior_door_tag = "incinerator_airlock_interior";
pixel_x = 8;
pixel_y = -24;
+ sanitize_external = 1;
+ sensor_tag = "incinerator_airlock_sensor";
req_access_txt = "12"
},
/obj/machinery/button/ignition{
@@ -19577,7 +19565,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/chair/stool,
@@ -19617,7 +19604,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/item/chair/stool,
@@ -19647,7 +19633,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/chair/stool,
@@ -20201,7 +20186,6 @@
},
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20755,7 +20739,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Atmospherics Storage";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
@@ -21061,7 +21044,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/structure/disposalpipe/segment{
@@ -21315,6 +21297,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
name = "Education Chamber";
req_access_txt = "3"
},
@@ -22370,8 +22353,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "co2_in";
- pixel_y = 1
+ id = "co2_in"
},
/turf/open/floor/engine/co2,
/area/engine/atmos)
@@ -23534,7 +23516,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Office";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -25068,8 +25049,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "tox_in";
- pixel_y = 1
+ id = "tox_in"
},
/turf/open/floor/engine/plasma,
/area/engine/atmos)
@@ -25131,7 +25111,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Atmospherics Storage";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
@@ -25247,8 +25226,7 @@
"bgn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Service Hall";
- req_access_txt = "0"
+ name = "Service Hall"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/white{
@@ -25492,7 +25470,6 @@
},
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/turf_decal/stripes/line{
@@ -25532,7 +25509,6 @@
},
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/turf_decal/stripes/line{
@@ -26243,7 +26219,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_y = 26;
- req_access_txt = "0";
use_power = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -26364,7 +26339,7 @@
icon_state = "1-8"
},
/obj/effect/turf_decal/stripes/box,
-/obj/machinery/rnd/protolathe/department/security,
+/obj/machinery/rnd/production/techfab/department/security,
/turf/open/floor/plasteel/red/side{
dir = 1
},
@@ -28184,8 +28159,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "n2o_in";
- pixel_y = 1
+ id = "n2o_in"
},
/turf/open/floor/engine/n2o,
/area/engine/atmos)
@@ -29498,7 +29472,6 @@
},
/obj/machinery/door/airlock/command{
name = "Head of Security's Office";
- req_access = null;
req_access_txt = "58"
},
/obj/structure/disposalpipe/segment{
@@ -29593,7 +29566,6 @@
},
/obj/machinery/door/airlock/command{
name = "Head of Security's Quarters";
- req_access = null;
req_access_txt = "58"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -29731,8 +29703,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "mix_in";
- pixel_y = 1
+ id = "mix_in"
},
/turf/open/floor/engine/vacuum,
/area/engine/atmos)
@@ -33082,7 +33053,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -34486,7 +34456,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -34883,8 +34852,7 @@
dir = 4
},
/obj/machinery/door/airlock/external{
- name = "Gulag Shuttle Airlock";
- req_access_txt = "0"
+ name = "Gulag Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -34899,8 +34867,7 @@
dir = 8
},
/obj/machinery/door/airlock/external{
- name = "Gulag Shuttle Airlock";
- req_access_txt = "0"
+ name = "Gulag Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -35704,7 +35671,7 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -39322,7 +39289,6 @@
},
/obj/machinery/door/airlock/engineering{
name = "Engineering Foyer";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/obj/effect/turf_decal/stripes/line{
@@ -39359,7 +39325,6 @@
},
/obj/machinery/door/airlock/engineering{
name = "Engineering Foyer";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/obj/structure/cable/white{
@@ -39562,8 +39527,7 @@
"bIE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -39605,7 +39569,6 @@
},
/obj/machinery/door/airlock/command{
name = "Council Chambers";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -39741,7 +39704,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -40487,8 +40449,7 @@
"bKw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -40588,7 +40549,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Telecomms Control Room";
- req_access = null;
req_access_txt = "19; 61"
},
/turf/open/floor/plasteel/vault{
@@ -40800,7 +40760,6 @@
"bLg" = (
/obj/machinery/door/airlock/security{
name = "Private Interrogation";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44289,8 +44248,7 @@
"bSt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -44304,8 +44262,7 @@
"bSu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -44585,7 +44542,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/structure/cable/white{
@@ -45268,7 +45224,7 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
@@ -45596,7 +45552,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Office";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/disposalpipe/segment,
@@ -45639,7 +45594,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plasteel/vault{
@@ -46320,7 +46274,7 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -47105,7 +47059,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXz" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/structure/cable/white{
icon_state = "4-8"
},
@@ -48072,7 +48026,6 @@
},
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plasteel/vault/telecomms{
@@ -48099,7 +48052,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -49915,6 +49867,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
+/obj/item/storage/secure/safe{
+ pixel_x = 32
+ },
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain/private)
"ccT" = (
@@ -50031,8 +49986,7 @@
/obj/machinery/button/door{
id = "lawyerprivacy";
name = "Lawyer's Privacy Control";
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/turf/open/floor/wood,
/area/lawoffice)
@@ -51609,6 +51563,9 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
+/obj/item/storage/secure/safe{
+ pixel_x = 32
+ },
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"cgi" = (
@@ -52595,7 +52552,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -53277,7 +53233,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plasteel/vault/telecomms{
@@ -53410,7 +53365,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"cjY" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
@@ -54553,7 +54508,6 @@
},
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plasteel/vault{
@@ -55283,7 +55237,6 @@
"cnY" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Quarters";
- req_access = null;
req_access_txt = "57"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55971,8 +55924,7 @@
},
/obj/machinery/door/window{
dir = 8;
- name = "Library Desk";
- req_access_txt = "0"
+ name = "Library Desk"
},
/turf/open/floor/plasteel/grimy,
/area/library)
@@ -56626,7 +56578,6 @@
},
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Office";
- req_access = null;
req_access_txt = "57"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -56654,7 +56605,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Telecomms Foyer";
- req_access = null;
req_access_txt = "61"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -57204,8 +57154,7 @@
},
/obj/machinery/door/window{
dir = 8;
- name = "Library Desk";
- req_access_txt = "0"
+ name = "Library Desk"
},
/turf/open/floor/plasteel/grimy,
/area/library)
@@ -58216,7 +58165,7 @@
/obj/structure/cable/white{
icon_state = "1-8"
},
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -58641,7 +58590,6 @@
dir = 8
},
/obj/effect/turf_decal/bot,
-/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cva" = (
@@ -58771,7 +58719,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -58787,7 +58734,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -60886,7 +60832,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"czU" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/neutral,
/area/ai_monitored/storage/eva)
"czV" = (
@@ -60930,7 +60876,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -60941,7 +60886,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -61251,13 +61195,16 @@
/area/space/nearstation)
"cAK" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
/area/engine/engineering)
"cAL" = (
-/obj/machinery/rnd/protolathe/department/engineering,
+/obj/machinery/rnd/production/protolathe/department/engineering,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -61588,7 +61535,6 @@
/obj/item/reagent_containers/syringe/charcoal,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- req_access_txt = "0";
use_power = 0
},
/obj/machinery/camera{
@@ -62633,8 +62579,7 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -64295,7 +64240,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/dirt{
@@ -64333,7 +64277,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -64353,7 +64296,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -64746,7 +64688,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
- req_access = null;
req_access_txt = "19"
},
/obj/structure/cable/white{
@@ -65005,8 +64946,7 @@
},
/obj/machinery/door/window{
dir = 4;
- name = "Fitness Ring";
- req_access_txt = "0"
+ name = "Fitness Ring"
},
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness/recreation)
@@ -67532,6 +67472,9 @@
dir = 5
},
/area/science/xenobiology)
+"cNh" = (
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
"cNi" = (
/obj/machinery/light/small{
dir = 1
@@ -67856,8 +67799,7 @@
/obj/structure/window/reinforced,
/obj/machinery/door/window{
dir = 8;
- name = "Fitness Ring";
- req_access_txt = "0"
+ name = "Fitness Ring"
},
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness/recreation)
@@ -68258,6 +68200,26 @@
"cON" = (
/turf/open/floor/circuit/green,
/area/science/xenobiology)
+"cOO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 2;
+ external_pressure_bound = 140;
+ name = "killroom vent";
+ pressure_checks = 0
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"cOP" = (
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"cOQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 2;
+ external_pressure_bound = 120;
+ name = "server vent"
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"cOR" = (
/turf/closed/wall/r_wall,
/area/science/research)
@@ -68716,7 +68678,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -68743,7 +68704,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -68773,7 +68733,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -69013,6 +68972,24 @@
dir = 1
},
/area/science/xenobiology)
+"cQw" = (
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
+"cQx" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
+"cQy" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
"cQz" = (
/obj/structure/closet/wardrobe/science_white,
/obj/machinery/light/small{
@@ -69230,8 +69207,8 @@
/obj/machinery/light{
dir = 8
},
-/obj/machinery/rnd/protolathe/department/medical,
/obj/effect/turf_decal/stripes/box,
+/obj/machinery/rnd/production/techfab/department/medical,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
@@ -70972,8 +70949,7 @@
/obj/machinery/door/window/eastleft{
name = "First-Aid Supplies";
red_alert_access = 1;
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/open/floor/plasteel/neutral/side{
dir = 4
@@ -74852,7 +74828,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 5
},
-/obj/machinery/rnd/protolathe/department/science,
+/obj/machinery/rnd/production/protolathe/department/science,
/turf/open/floor/plasteel,
/area/science/lab)
"dcL" = (
@@ -75506,7 +75482,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 6
},
-/obj/machinery/rnd/circuit_imprinter/department/science,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
/turf/open/floor/plasteel,
/area/science/lab)
"dek" = (
@@ -76079,7 +76055,6 @@
pixel_y = 7;
req_access_txt = "33"
},
-/obj/machinery/smoke_machine,
/turf/open/floor/plasteel/whiteyellow/corner{
dir = 8
},
@@ -77055,7 +77030,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- req_access_txt = "0";
use_power = 0
},
/turf/open/floor/plasteel/whiteblue/corner,
@@ -77244,7 +77218,7 @@
/turf/open/floor/plasteel/neutral,
/area/science/research)
"dhZ" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -77316,7 +77290,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research and Development Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/obj/machinery/door/poddoor/shutters/preopen{
@@ -77392,8 +77365,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/door/window/southleft{
dir = 8;
- name = "Chemistry Desk";
- req_access_txt = "0"
+ name = "Chemistry Desk"
},
/turf/open/floor/plasteel,
/area/medical/chemistry)
@@ -77482,7 +77454,7 @@
/obj/structure/cable/white{
icon_state = "4-8"
},
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue,
/area/medical/medbay/central)
@@ -77814,7 +77786,7 @@
/area/science/circuit)
"djq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/rnd/protolathe/department/science,
+/obj/machinery/rnd/production/protolathe/department/science,
/obj/machinery/light{
dir = 1
},
@@ -78965,7 +78937,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research and Development Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/obj/structure/cable/white{
@@ -79083,8 +79054,7 @@
"dmc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -79102,8 +79072,7 @@
"dme" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -80760,8 +80729,7 @@
"dpC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -81241,7 +81209,6 @@
},
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
- req_access = null;
req_access_txt = "30"
},
/obj/effect/turf_decal/stripes/line{
@@ -81329,7 +81296,6 @@
},
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
- req_access = null;
req_access_txt = "30"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -81598,8 +81564,7 @@
"drn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -84712,7 +84677,6 @@
},
/obj/machinery/door/airlock/command{
name = "Research Director's Quarters";
- req_access = null;
req_access_txt = "30"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -85145,7 +85109,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- req_access_txt = "0";
use_power = 0
},
/turf/open/floor/plasteel/vault,
@@ -86733,16 +86696,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/aft)
-"dBP" = (
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/structure/table/wood/poker,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/crew_quarters/abandoned_gambling_den)
"dBQ" = (
/obj/structure/table/wood/poker,
/obj/item/reagent_containers/food/drinks/bottle/rum{
@@ -87191,7 +87144,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- req_access_txt = "0";
use_power = 0
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -88327,8 +88279,7 @@
"dFp" = (
/obj/machinery/door/window{
dir = 8;
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
@@ -88665,7 +88616,6 @@
},
/obj/machinery/door/airlock/command{
name = "Research Division Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable/white{
@@ -88758,7 +88708,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dGe" = (
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/obj/item/reagent_containers/glass/beaker/sulphuric,
/obj/machinery/airalarm{
dir = 8;
@@ -89815,7 +89765,7 @@
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -91505,7 +91455,7 @@
/turf/open/floor/plating/airless,
/area/science/test_area)
"dLF" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/airless,
/area/science/test_area)
@@ -93875,7 +93825,7 @@
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/aft)
"dQR" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/neutral,
/area/hallway/primary/aft)
"dQU" = (
@@ -98110,7 +98060,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/command{
name = "Auxiliary E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/structure/cable/white{
@@ -98129,7 +98078,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/command{
name = "Auxiliary E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/structure/barricade/wooden,
@@ -98904,8 +98852,7 @@
/area/chapel/office)
"ecS" = (
/obj/machinery/door/morgue{
- name = "Confession Booth";
- req_access_txt = "0"
+ name = "Confession Booth"
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -100609,7 +100556,7 @@
/turf/open/floor/plasteel/caution,
/area/engine/engineering)
"ehw" = (
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -100630,8 +100577,8 @@
name = "Station Intercom";
pixel_x = -26
},
-/obj/machinery/rnd/protolathe/department/service,
/obj/effect/turf_decal/stripes/box,
+/obj/machinery/rnd/production/techfab/department/service,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
@@ -100661,7 +100608,7 @@
/area/hallway/secondary/service)
"ehJ" = (
/obj/effect/turf_decal/stripes/box,
-/obj/machinery/rnd/protolathe/department/cargo,
+/obj/machinery/rnd/production/techfab/department/cargo,
/turf/open/floor/plasteel/brown,
/area/quartermaster/office)
"ehK" = (
@@ -100711,6 +100658,10 @@
},
/turf/open/floor/plating,
/area/science/research/abandoned)
+"eRv" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
"faI" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -100729,29 +100680,16 @@
dir = 4
},
/area/science/misc_lab)
-"fzH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/extinguisher,
-/obj/item/extinguisher{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/extinguisher{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"fGq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/science/circuit)
+"fLR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"fRT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -100766,9 +100704,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/science/circuit)
-"gsR" = (
-/turf/open/space,
-/area/space)
+"gBb" = (
+/turf/open/space/basic,
+/area/space/nearstation)
"gKr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
@@ -100782,12 +100720,6 @@
dir = 8
},
/area/science/misc_lab)
-"gPz" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
"gQS" = (
/turf/open/floor/plasteel/white/side{
dir = 9
@@ -100834,6 +100766,14 @@
},
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
+"hFo" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/space,
+/area/space/nearstation)
"hGT" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -100865,9 +100805,6 @@
dir = 9
},
/area/science/circuit)
-"hRG" = (
-/turf/open/space/basic,
-/area/space/nearstation)
"iQh" = (
/obj/structure/bodycontainer/morgue{
dir = 1
@@ -100915,7 +100852,7 @@
},
/obj/machinery/door/airlock/highsecurity{
name = "Emergency Access";
- req_access_txt = "24;10"
+ req_one_access_txt = "24;10"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -100926,24 +100863,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
/area/medical/morgue)
-"jKb" = (
-/turf/open/space,
+"kgl" = (
+/turf/open/floor/plating/airless,
/area/space/nearstation)
-"jRX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 2;
- external_pressure_bound = 120;
- name = "server vent"
+"kww" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
},
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"kwx" = (
/obj/effect/turf_decal/loading_area,
/turf/open/floor/plasteel/whitepurple/corner,
/area/science/research)
-"kwP" = (
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
"kyo" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -100959,15 +100891,12 @@
dir = 10
},
/area/science/circuit)
-"lel" = (
-/obj/machinery/vending/kink,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/locker)
-"lkn" = (
+"lhv" = (
+/turf/open/space,
+/area/space)
+"ljZ" = (
/turf/open/floor/plating/airless,
-/area/space/nearstation)
+/area/space)
"loI" = (
/obj/machinery/autolathe,
/obj/machinery/door/window/southleft{
@@ -100983,10 +100912,6 @@
dir = 4
},
/area/science/lab)
-"lxv" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"lEl" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -101010,6 +100935,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side,
/area/maintenance/port)
+"lJm" = (
+/obj/structure/particle_accelerator/power_box{
+ icon_state = "power_box";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"lKu" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -101031,13 +100963,6 @@
dir = 1
},
/area/science/circuit)
-"mqk" = (
-/obj/structure/particle_accelerator/end_cap{
- icon_state = "end_cap";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"mvm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -101049,30 +100974,27 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit/green,
/area/science/research/abandoned)
-"npb" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
+"mTn" = (
+/obj/structure/particle_accelerator/particle_emitter/center{
+ icon_state = "emitter_center";
+ dir = 8
},
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
-"nGW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 2;
- external_pressure_bound = 140;
- name = "killroom vent";
- pressure_checks = 0
+/turf/open/floor/plating,
+/area/engine/engineering)
+"nCt" = (
+/obj/machinery/vending/kink,
+/turf/open/floor/plasteel/vault{
+ dir = 5
},
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"nJG" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
+/area/crew_quarters/locker)
+"nSh" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"oZC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -101081,13 +101003,6 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
-"pfd" = (
-/obj/structure/particle_accelerator/particle_emitter/center{
- icon_state = "emitter_center";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"pmQ" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -101098,9 +101013,6 @@
dir = 1
},
/area/science/circuit)
-"pqQ" = (
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"psi" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bodycontainer/morgue{
@@ -101138,6 +101050,10 @@
dir = 5
},
/area/science/circuit)
+"qKC" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
"rhO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
@@ -101146,6 +101062,13 @@
dir = 9
},
/area/science/circuit)
+"rtA" = (
+/obj/structure/particle_accelerator/end_cap{
+ icon_state = "end_cap";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"rCv" = (
/turf/open/floor/plasteel/white/side{
dir = 6
@@ -101154,12 +101077,6 @@
"saw" = (
/turf/closed/wall,
/area/science/circuit)
-"tdp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
"tmi" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -101169,6 +101086,9 @@
"tCh" = (
/turf/closed/wall,
/area/science/misc_lab)
+"tHw" = (
+/turf/open/space,
+/area/space/nearstation)
"tMk" = (
/turf/open/floor/plasteel/white/side{
dir = 10
@@ -101198,14 +101118,10 @@
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/whitepurple/side,
/area/science/misc_lab)
-"uDN" = (
-/turf/open/floor/plating/airless,
-/area/space)
"uYS" = (
/obj/machinery/door/airlock/atmos/glass{
heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -101222,12 +101138,6 @@
dir = 5
},
/area/medical/morgue)
-"vOd" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
"wei" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
@@ -101264,13 +101174,6 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"xwB" = (
-/obj/structure/particle_accelerator/power_box{
- icon_state = "power_box";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"xwK" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -121763,13 +121666,13 @@ aaa
cja
ckw
clS
-jKb
-jKb
+tHw
+tHw
clS
-nJG
-hRG
-jKb
-jKb
+eRv
+gBb
+tHw
+tHw
clS
ctn
cja
@@ -122019,15 +121922,15 @@ cfA
aad
cjb
cky
-jKb
-gsR
-gsR
-lxv
+tHw
+lhv
+lhv
+qKC
aad
-hRG
-gsR
-gsR
-jKb
+gBb
+lhv
+lhv
+tHw
czq
cAI
aad
@@ -122230,12 +122133,12 @@ aFq
aGO
aIo
aJG
-aFr
+fLR
aMw
aNT
aPz
-aFr
-aSR
+nSh
+hFo
aRF
aWt
aXV
@@ -122276,15 +122179,15 @@ cfA
aaa
cja
ckw
-jKb
-gsR
-hRG
-hRG
+tHw
+lhv
+gBb
+gBb
aad
-hRG
-hRG
-gsR
-jKb
+gBb
+gBb
+lhv
+tHw
ctn
cja
aaa
@@ -122533,14 +122436,14 @@ cfA
abj
cjb
cky
-hRG
-hRG
-hRG
+gBb
+gBb
+gBb
cqo
clR
ctm
-hRG
-lxv
+gBb
+qKC
clS
czq
cAI
@@ -122790,15 +122693,15 @@ cdC
aad
cja
ckw
-nJG
+eRv
aad
aad
ckw
crJ
-tdp
+kww
aad
aad
-nJG
+eRv
ctn
cja
aad
@@ -123048,14 +122951,14 @@ abj
cjb
cky
clS
-lxv
-hRG
+qKC
+gBb
cqp
crK
cto
-hRG
-hRG
-hRG
+gBb
+gBb
+gBb
czq
cAI
abj
@@ -123304,15 +123207,15 @@ cfA
aaa
cja
ckw
-jKb
-gsR
-hRG
-hRG
+tHw
+lhv
+gBb
+gBb
aad
-hRG
-hRG
-gsR
-jKb
+gBb
+gBb
+lhv
+tHw
ctn
cja
aaa
@@ -123561,15 +123464,15 @@ cfA
aad
cjb
cky
-jKb
-gsR
+tHw
+lhv
aaa
-hRG
+gBb
aad
-lxv
+qKC
aaa
-gsR
-jKb
+lhv
+tHw
czq
cAI
aad
@@ -123819,13 +123722,13 @@ aaa
cja
ckw
clS
-jKb
-hRG
-hRG
-nJG
+tHw
+gBb
+gBb
+eRv
clS
-jKb
-jKb
+tHw
+tHw
clS
ctn
cja
@@ -123862,7 +123765,7 @@ dod
dxE
dyY
dAo
-dBP
+aap
dfY
aad
abj
@@ -124329,8 +124232,8 @@ car
cbT
cdG
cfB
-uDN
-lkn
+ljZ
+kgl
aaa
aad
cjd
@@ -124342,8 +124245,8 @@ cjd
cjd
aad
aaa
-lkn
-uDN
+kgl
+ljZ
cDV
cFL
cHg
@@ -124850,7 +124753,7 @@ cje
cjd
cpa
cqr
-pfd
+mTn
ctp
cuQ
cjd
@@ -125107,7 +125010,7 @@ chv
cnC
cpa
cqs
-xwB
+lJm
ctq
cuR
cnC
@@ -125621,7 +125524,7 @@ clX
cnE
cpc
cqu
-mqk
+rtA
cts
cuT
cnE
@@ -127103,7 +127006,7 @@ atS
avb
awh
axz
-axz
+ayK
axz
aAW
axz
@@ -128474,7 +128377,7 @@ das
dcd
cMY
deX
-fzH
+dgo
dhR
lKu
tmi
@@ -132574,9 +132477,9 @@ cHA
cjp
cKl
cLI
-kwP
-kwP
-kwP
+cNh
+cNh
+cNh
cNc
cTQ
cVI
@@ -132831,9 +132734,9 @@ cHB
cjp
cKj
cLI
-kwP
-nGW
-vOd
+cNh
+cOO
+cQw
cSf
cTR
cVP
@@ -133089,8 +132992,8 @@ caE
cKm
cLI
cNi
-pqQ
-gPz
+cOP
+cQx
cSg
cTS
cVQ
@@ -133345,9 +133248,9 @@ cHB
cjp
cKk
cLI
-kwP
-jRX
-npb
+cNh
+cOQ
+cQy
cSh
cTT
cVR
@@ -133602,9 +133505,9 @@ cHA
ceb
cKk
cLI
-kwP
-kwP
-kwP
+cNh
+cNh
+cNh
cNc
cTU
cVS
@@ -149778,7 +149681,7 @@ clt
cnc
coE
cqd
-lel
+nCt
csT
cuy
cvU
diff --git a/_maps/cit_map_files/MetaStation/MetaStation.dmm b/_maps/cit_map_files/MetaStation/MetaStation.dmm
index 74cdbe936c..c048c43c85 100644
--- a/_maps/cit_map_files/MetaStation/MetaStation.dmm
+++ b/_maps/cit_map_files/MetaStation/MetaStation.dmm
@@ -348,10 +348,8 @@
"abg" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "SecJusticeChamber";
- name = "Justice Vent";
- opacity = 1
+ name = "Justice Vent"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -422,6 +420,11 @@
/obj/machinery/newscaster{
pixel_y = 32
},
+/obj/machinery/vending/sustenance{
+ desc = "A vending machine normally reserved for work camps.";
+ name = "\improper sustenance vendor";
+ product_slogans = "Enjoy your meal.;Enough calories to support any worker."
+ },
/turf/open/floor/plasteel,
/area/security/prison)
"abo" = (
@@ -534,8 +537,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/machinery/light/small,
/turf/open/floor/plasteel/freezer,
@@ -720,8 +722,7 @@
/area/security/execution/education)
"abY" = (
/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
+ name = "Unisex Restroom"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
@@ -755,10 +756,9 @@
/turf/open/floor/plasteel,
/area/security/prison)
"ace" = (
-/obj/machinery/vending/sustenance{
- desc = "A vending machine normally reserved for work camps.";
- name = "\improper sustenance vendor";
- product_slogans = "Enjoy your meal.;Enough calories to support any worker."
+/obj/machinery/computer/cryopod{
+ pixel_x = 28;
+ pixel_y = 0
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
@@ -1439,7 +1439,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/floorgrime,
@@ -1469,7 +1468,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plating{
@@ -1494,7 +1492,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/floorgrime,
@@ -1621,7 +1618,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -1789,7 +1785,6 @@
"aef" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/structure/cable{
@@ -1817,8 +1812,7 @@
base_state = "left";
dir = 1;
icon_state = "left";
- name = "gas ports";
- req_access_txt = "0"
+ name = "gas ports"
},
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
@@ -1831,8 +1825,7 @@
base_state = "right";
dir = 1;
icon_state = "right";
- name = "gas ports";
- req_access_txt = "0"
+ name = "gas ports"
},
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
@@ -1842,7 +1835,6 @@
aiControlDisabled = 1;
id_tag = "prisonereducation";
name = "Prisoner Education Chamber";
- req_access = null;
req_access_txt = "3"
},
/obj/structure/cable/yellow{
@@ -2604,7 +2596,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -2993,7 +2984,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/mirror{
@@ -3402,9 +3392,7 @@
},
/area/crew_quarters/fitness/recreation)
"aho" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/crew_quarters/fitness/recreation)
"ahp" = (
@@ -3674,7 +3662,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Armory";
- req_access = null;
req_access_txt = "3"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -4061,7 +4048,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
name = "Head of Security's Office";
- req_access = null;
req_access_txt = "58"
},
/obj/structure/cable/yellow{
@@ -4113,8 +4099,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "Shooting Range";
- req_access_txt = "0"
+ name = "Shooting Range"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
@@ -5314,6 +5299,10 @@
"alq" = (
/turf/closed/wall,
/area/maintenance/starboard)
+"alr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"als" = (
/obj/machinery/light{
dir = 8
@@ -5342,7 +5331,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -5528,8 +5516,7 @@
base_state = "left";
dir = 4;
icon_state = "left";
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -5551,8 +5538,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
- req_access = null;
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5601,9 +5586,7 @@
},
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
- req_access = null;
- req_access_txt = "3";
- req_one_access_txt = "0"
+ req_access_txt = "3"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -5640,7 +5623,6 @@
},
/obj/machinery/door/airlock/security/glass{
name = "Gear Room";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/structure/cable/yellow{
@@ -5835,7 +5817,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Firing Range";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/structure/cable/yellow{
@@ -5999,7 +5980,6 @@
/area/maintenance/starboard/fore)
"amH" = (
/obj/machinery/door/airlock/external{
- req_access_txt = "0";
req_one_access_txt = "13,8"
},
/turf/open/floor/plating,
@@ -6128,8 +6108,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "windoor";
- req_access_txt = "0"
+ name = "windoor"
},
/obj/item/book/manual/wiki/engineering_hacking,
/obj/item/device/tape/random,
@@ -6201,8 +6180,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/turf/open/floor/plasteel/whitered/side{
dir = 4
@@ -6393,7 +6371,6 @@
"anD" = (
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/structure/cable/yellow{
@@ -6677,8 +6654,7 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Brig Infirmary Maintenance";
- req_access_txt = "63";
- req_one_access_txt = "0"
+ req_access_txt = "63"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
@@ -6794,9 +6770,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
- req_access = null;
- req_access_txt = "3";
- req_one_access_txt = "0"
+ req_access_txt = "3"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -7015,7 +6989,6 @@
/area/maintenance/fore)
"aoS" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "1;4;38;12"
},
/obj/structure/cable/yellow{
@@ -8150,8 +8123,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Interrogation Monitoring";
- req_access = null;
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/turf/open/floor/plasteel/grimy,
@@ -8203,8 +8174,7 @@
"arC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Recreation Area";
- req_access_txt = "0"
+ name = "Recreation Area"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -8222,8 +8192,7 @@
"arE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Recreation Area";
- req_access_txt = "0"
+ name = "Recreation Area"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -8415,8 +8384,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -8457,8 +8425,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -8496,9 +8463,7 @@
/area/maintenance/port/fore)
"asf" = (
/obj/machinery/door/airlock/maintenance_hatch{
- name = "Cargo Bay Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Cargo Bay Bridge Access"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8567,7 +8532,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance{
name = "Brig Maintenance";
- req_access_txt = "0";
req_one_access_txt = "63;12"
},
/obj/structure/disposalpipe/segment,
@@ -8680,9 +8644,7 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
icon_state = "1-4"
},
@@ -8699,18 +8661,15 @@
/obj/machinery/button/door{
id = "Secure Gate";
name = "Cell Window Control";
- normaldoorcontrol = 0;
pixel_x = -5;
pixel_y = -3;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/button/door{
id = "briglockdown";
name = "Brig Lockdown Control";
pixel_x = 5;
- pixel_y = -3;
- req_access_txt = "0"
+ pixel_y = -3
},
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -8884,7 +8843,7 @@
/turf/open/floor/plasteel/red/side,
/area/security/main)
"asL" = (
-/obj/machinery/rnd/protolathe/department/security,
+/obj/machinery/rnd/production/techfab/department/security,
/turf/open/floor/plasteel/red/side{
dir = 6
},
@@ -8987,7 +8946,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -9042,7 +9000,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -9146,9 +9103,7 @@
"ato" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance_hatch{
- name = "Cargo Bay Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Cargo Bay Bridge Access"
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -9291,7 +9246,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63"
},
/turf/open/floor/plating,
@@ -9421,9 +9375,7 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/warden)
@@ -9431,7 +9383,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Gear Room";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/effect/turf_decal/delivery,
@@ -9448,7 +9399,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/turf/open/floor/plasteel,
@@ -9457,7 +9407,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -9903,8 +9852,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/machinery/door/window/brigdoor{
dir = 1;
@@ -10368,7 +10316,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;50"
},
/turf/open/floor/plating,
@@ -10458,9 +10405,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
"awd" = (
@@ -10639,9 +10584,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Interrogation";
- req_access = null;
- req_access_txt = "63";
- req_one_access_txt = "0"
+ req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10720,7 +10663,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -10748,7 +10690,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -10893,9 +10834,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
@@ -10949,9 +10888,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/brig)
"axh" = (
@@ -11247,9 +11184,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/machinery/light/small{
- dir = 1
- },
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"axN" = (
@@ -11410,6 +11344,13 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"aye" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
"ayf" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/glass{
@@ -11441,7 +11382,6 @@
"aym" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/structure/cable/yellow{
@@ -11535,9 +11475,7 @@
/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/security/brig)
"ayz" = (
@@ -11649,7 +11587,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11816,18 +11753,13 @@
},
/area/security/brig)
"azd" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
},
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
"aze" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -11940,9 +11872,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
icon_state = "1-4"
},
@@ -12266,9 +12196,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
- },
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
@@ -12547,9 +12474,7 @@
/area/space)
"aAB" = (
/obj/machinery/door/airlock/external{
- name = "Mining Dock Airlock";
- req_access = null;
- req_access_txt = "0"
+ name = "Mining Dock Airlock"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -13152,8 +13077,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aBM" = (
@@ -13161,8 +13089,11 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/machinery/rnd/protolathe/department/engineering,
+/obj/machinery/rnd/production/protolathe/department/engineering,
/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aBN" = (
@@ -13171,9 +13102,15 @@
dir = 1
},
/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aBO" = (
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aBS" = (
@@ -13327,8 +13264,7 @@
"aCj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "0"
+ name = "Labor Camp Shuttle Airlock"
},
/turf/open/floor/plasteel/dark,
/area/hallway/primary/fore)
@@ -13438,7 +13374,6 @@
"aCr" = (
/obj/machinery/door/airlock/security{
name = "Court Cell";
- req_access = null;
req_access_txt = "63"
},
/turf/open/floor/plasteel/dark,
@@ -13530,8 +13465,7 @@
/area/crew_quarters/toilet/restrooms)
"aCB" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
@@ -13602,7 +13536,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/cobweb,
@@ -13704,13 +13637,17 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
+"aCX" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"aCY" = (
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -26
},
-/obj/machinery/power/grounding_rod,
-/turf/open/floor/plating/airless,
-/area/space)
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"aCZ" = (
/obj/structure/cable,
/obj/effect/turf_decal/stripes/line{
@@ -13940,18 +13877,15 @@
/obj/machinery/button/door{
id = "Secure Gate";
name = "Cell Window Control";
- normaldoorcontrol = 0;
pixel_x = 5;
pixel_y = 27;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/button/door{
id = "briglockdown";
name = "Brig Lockdown Control";
pixel_x = 5;
- pixel_y = 37;
- req_access_txt = "0"
+ pixel_y = 37
},
/obj/machinery/light/small{
dir = 1
@@ -14103,7 +14037,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/landmark/start/assistant,
@@ -14613,8 +14546,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
dir = 4;
@@ -14677,9 +14609,7 @@
/area/security/detectives_office)
"aFa" = (
/obj/machinery/door/window{
- dir = 1;
- name = "glass door";
- req_access_txt = "0"
+ dir = 1
},
/turf/open/floor/plasteel/dark,
/area/security/detectives_office)
@@ -14753,8 +14683,7 @@
"aFi" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -15015,7 +14944,6 @@
/area/quartermaster/warehouse)
"aFM" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/obj/structure/disposalpipe/segment,
@@ -15144,7 +15072,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Security-Storage Backroom";
- req_access = null;
req_access_txt = "63"
},
/turf/open/floor/plasteel/dark,
@@ -15317,7 +15244,7 @@
},
/area/hallway/primary/fore)
"aGo" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
@@ -15443,7 +15370,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/freezer,
@@ -15783,7 +15709,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -15824,7 +15749,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15964,7 +15888,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Court Cell";
- req_access = null;
req_access_txt = "63"
},
/turf/open/floor/plasteel/dark,
@@ -16071,7 +15994,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/bed,
@@ -16103,9 +16025,6 @@
lootcount = 2;
name = "2maintenance loot spawner"
},
-/obj/machinery/light/small{
- dir = 8
- },
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aHW" = (
@@ -16146,7 +16065,6 @@
id = "aux_base_shutters";
name = "Public Shutters Control";
pixel_y = -24;
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/turf/open/floor/plasteel/yellow/side,
@@ -16310,7 +16228,6 @@
},
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -16470,7 +16387,6 @@
},
/obj/machinery/door/airlock/security{
name = "Security-Storage Backroom";
- req_access = null;
req_access_txt = "63"
},
/turf/open/floor/plasteel/dark,
@@ -16717,7 +16633,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/freezer,
@@ -16744,7 +16659,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/landmark/start/assistant,
@@ -16925,7 +16839,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -16938,7 +16851,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
@@ -17008,7 +16920,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Brig";
- req_access = null;
req_access_txt = "63; 42"
},
/turf/open/floor/plasteel,
@@ -17128,7 +17039,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "1;4;38;12"
},
/turf/open/floor/plating,
@@ -17136,8 +17046,7 @@
"aKl" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
@@ -17148,8 +17057,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
+ name = "Dormitories"
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
@@ -17164,8 +17072,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
+ name = "Dormitories"
},
/turf/open/floor/plasteel/neutral/corner{
dir = 4
@@ -17303,10 +17210,8 @@
"aKN" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "QMLoaddoor2";
- name = "Supply Dock Loading Door";
- opacity = 1
+ name = "Supply Dock Loading Door"
},
/obj/machinery/conveyor{
dir = 4;
@@ -18754,7 +18659,7 @@
/turf/open/floor/plasteel/neutral/side,
/area/security/courtroom)
"aOj" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/neutral/side,
/area/security/courtroom)
"aOk" = (
@@ -18948,8 +18853,7 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
+ name = "Garden"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -19631,9 +19535,7 @@
icon_state = "2-8"
},
/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aPZ" = (
/obj/machinery/vending/tool,
@@ -19675,10 +19577,8 @@
"aQg" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "QMLoaddoor";
- name = "Supply Dock Loading Door";
- opacity = 1
+ name = "Supply Dock Loading Door"
},
/obj/machinery/conveyor{
dir = 8;
@@ -20027,8 +19927,7 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock{
- name = "Locker Room";
- req_access_txt = "0"
+ name = "Locker Room"
},
/turf/open/floor/plasteel/floorgrime,
/area/crew_quarters/locker)
@@ -20261,9 +20160,10 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aRp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20451,8 +20351,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Crate Disposal Chute";
- req_access_txt = "0"
+ name = "Crate Disposal Chute"
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -20717,9 +20616,10 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plasteel/yellow/side{
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aSu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -21064,7 +20964,6 @@
"aTi" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
- locked = 0;
name = "AI Upload";
req_access_txt = "16"
},
@@ -21167,8 +21066,7 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Locker Room";
- req_access_txt = "0"
+ name = "Locker Room"
},
/turf/open/floor/plasteel/floorgrime,
/area/crew_quarters/locker)
@@ -21276,9 +21174,10 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aTG" = (
/obj/structure/disposalpipe/segment{
@@ -21343,8 +21242,7 @@
},
/obj/machinery/door/window{
dir = 2;
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/turf/open/floor/plasteel/dark,
/area/aisat)
@@ -21427,8 +21325,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/turf/open/floor/plasteel/dark,
/area/aisat)
@@ -21494,7 +21391,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/machinery/rnd/protolathe/department/cargo,
+/obj/machinery/rnd/production/techfab/department/cargo,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aUj" = (
@@ -21928,9 +21825,7 @@
"aUY" = (
/obj/effect/turf_decal/delivery,
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aUZ" = (
/obj/structure/disposalpipe/segment,
@@ -21985,7 +21880,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/yellow/side,
+/turf/closed/wall,
+/area/engine/engineering)
+"aVh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
/area/engine/engineering)
"aVk" = (
/obj/structure/window/reinforced{
@@ -22525,10 +22426,8 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aWu" = (
-/obj/machinery/door/airlock/external{
- name = "Escape Pod Four";
- req_access = null;
- req_access_txt = "32"
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -22583,8 +22482,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/command{
name = "Chief Engineer's Office";
- req_access_txt = "56";
- req_one_access_txt = "0"
+ req_access_txt = "56"
},
/obj/effect/turf_decal/bot{
dir = 1
@@ -22941,7 +22839,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
@@ -23717,7 +23614,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
@@ -24361,7 +24257,6 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;48;50;1"
},
/turf/open/floor/plating,
@@ -24404,7 +24299,6 @@
"bak" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Maintenance";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/structure/cable/yellow{
@@ -24530,7 +24424,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -24544,7 +24437,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -25458,8 +25350,7 @@
/area/maintenance/central)
"bch" = (
/obj/machinery/door/airlock{
- name = "Central Emergency Storage";
- req_access_txt = "0"
+ name = "Central Emergency Storage"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27092,7 +26983,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
- req_access_txt = "0";
req_one_access_txt = "23;30"
},
/obj/structure/cable/yellow{
@@ -27233,8 +27123,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "MiniSat Airlock Access";
- req_access_txt = "0"
+ name = "MiniSat Airlock Access"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -27526,7 +27415,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Mailroom";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -27600,7 +27488,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Office";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28308,8 +28195,7 @@
},
/obj/machinery/door/window{
dir = 8;
- name = "MiniSat Airlock Access";
- req_access_txt = "0"
+ name = "MiniSat Airlock Access"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/dark,
@@ -28413,7 +28299,6 @@
},
/obj/machinery/door/airlock/security{
name = "Customs Desk";
- req_access = null;
req_access_txt = "1"
},
/obj/effect/landmark/event_spawn,
@@ -28443,7 +28328,6 @@
dir = 10
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;48;50;1"
},
/turf/open/floor/plating,
@@ -29031,7 +28915,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
name = "Escape Pod Four";
- req_access = null;
req_access_txt = "32"
},
/turf/open/floor/plasteel,
@@ -29499,7 +29382,7 @@
},
/area/bridge)
"bkF" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
@@ -29978,7 +29861,6 @@
/area/ai_monitored/turret_protected/aisat_interior)
"blI" = (
/obj/machinery/door/airlock/highsecurity{
- locked = 0;
name = "AI Chamber";
req_access_txt = "16"
},
@@ -30462,7 +30344,6 @@
"bmI" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -30532,7 +30413,6 @@
/area/crew_quarters/bar)
"bmQ" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/obj/structure/disposalpipe/segment,
@@ -30545,8 +30425,7 @@
"bmS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
- name = "Starboard Emergency Storage";
- req_access_txt = "0"
+ name = "Starboard Emergency Storage"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -30556,7 +30435,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/turf/open/floor/plating,
@@ -30607,7 +30485,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Foyer";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30793,8 +30670,7 @@
"bns" = (
/obj/machinery/door/window{
dir = 1;
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner{
@@ -31939,7 +31815,7 @@
icon_state = "4-8"
},
/obj/machinery/holopad,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
"bpL" = (
@@ -32800,7 +32676,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/turf/open/floor/plating,
@@ -32870,7 +32745,6 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/turf/open/floor/plating,
@@ -33140,8 +33014,7 @@
"brS" = (
/obj/machinery/door/window{
dir = 2;
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner{
@@ -33370,7 +33243,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"bsm" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
@@ -33846,7 +33719,6 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "20;12"
},
/turf/open/floor/plating,
@@ -33997,7 +33869,6 @@
"btz" = (
/obj/machinery/door/airlock/maintenance{
name = "Engineering Foyer Maintenance";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -34247,7 +34118,6 @@
/area/hallway/primary/port)
"bud" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27;37"
},
/obj/structure/cable/yellow{
@@ -34339,7 +34209,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34427,7 +34296,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/turf/open/floor/plasteel/dark,
@@ -34466,7 +34334,6 @@
"buA" = (
/obj/machinery/door/airlock/command{
name = "Command Desk";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/vault,
@@ -34648,7 +34515,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/turf/open/floor/plating,
@@ -35464,7 +35330,6 @@
"bwG" = (
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
- req_access = null;
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36037,8 +35902,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Auxiliary Bathrooms";
- req_access_txt = "0"
+ name = "Auxiliary Bathrooms"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36156,8 +36020,7 @@
/obj/machinery/door/window/northleft{
dir = 2;
icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/machinery/door/poddoor/preopen{
id = "hop";
@@ -36187,7 +36050,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Council Chamber";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/dark,
@@ -36230,7 +36092,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Council Chamber";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/dark,
@@ -36256,7 +36117,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/turf/open/floor/plasteel/dark,
@@ -36478,7 +36338,7 @@
/area/ai_monitored/storage/satellite)
"byP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/caution{
dir = 8
},
@@ -36858,8 +36718,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/turf/open/floor/plating,
/area/maintenance/port)
@@ -36927,8 +36786,7 @@
/area/library)
"bzG" = (
/obj/machinery/door/morgue{
- name = "Study #1";
- req_access_txt = "0"
+ name = "Study #1"
},
/turf/open/floor/plasteel/cult{
dir = 2
@@ -36936,8 +36794,7 @@
/area/library)
"bzH" = (
/obj/machinery/door/morgue{
- name = "Study #2";
- req_access_txt = "0"
+ name = "Study #2"
},
/turf/open/floor/plasteel/cult{
dir = 2
@@ -37630,7 +37487,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -37904,7 +37760,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "20;12"
},
/obj/structure/disposalpipe/segment,
@@ -38201,6 +38056,7 @@
/obj/machinery/atmospherics/pipe/simple/purple/visible{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/space,
/area/space/nearstation)
"bCA" = (
@@ -38996,7 +38852,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -39680,7 +39535,6 @@
"bFA" = (
/obj/machinery/door/airlock{
name = "Theatre Stage";
- req_access_txt = "0";
req_one_access_txt = "12;46"
},
/obj/structure/cable/yellow{
@@ -39999,7 +39853,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/item/soap/nanotrasen,
@@ -40023,7 +39876,6 @@
"bGq" = (
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;37"
},
/turf/open/floor/plating,
@@ -40128,7 +39980,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Teleport Access";
- req_access_txt = "0";
req_one_access_txt = "17;19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -40241,7 +40092,6 @@
/area/hallway/secondary/command)
"bGT" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;17"
},
/obj/structure/cable/yellow{
@@ -40664,7 +40514,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -40765,7 +40614,7 @@
"bIe" = (
/obj/structure/table,
/obj/item/hand_tele,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/airalarm{
dir = 4;
pixel_x = -23
@@ -41276,7 +41125,6 @@
/area/tcommsat/computer)
"bJj" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27;37"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -41320,7 +41168,6 @@
/area/hallway/secondary/entry)
"bJp" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27;37"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41576,7 +41423,7 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/neutral/side{
dir = 2
},
@@ -41889,7 +41736,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bKy" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -42024,8 +41871,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/obj/machinery/camera{
c_tag = "MiniSat Exterior - Aft Starboard";
@@ -42292,9 +42138,7 @@
"bLu" = (
/obj/machinery/door/window/northleft{
dir = 8;
- name = "Disposals Chute";
- pixel_x = -1;
- req_access_txt = "0"
+ name = "Disposals Chute"
},
/obj/machinery/disposal/deliveryChute{
dir = 8;
@@ -42654,6 +42498,10 @@
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/engine/atmos)
+"bMi" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
"bMj" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
@@ -43527,8 +43375,7 @@
},
/obj/machinery/door/window{
dir = 2;
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/obj/machinery/camera{
c_tag = "MiniSat Exterior - Aft Port";
@@ -43583,7 +43430,6 @@
/area/hallway/secondary/entry)
"bOe" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27"
},
/obj/structure/cable/yellow{
@@ -44269,8 +44115,7 @@
"bPI" = (
/obj/machinery/door/airlock/maintenance/abandoned{
name = "Vacant Office Maintenance";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/open/floor/plating,
/area/maintenance/port)
@@ -45756,7 +45601,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;17"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -45787,7 +45631,6 @@
},
/obj/machinery/door/airlock/medical/glass{
name = "Service Door";
- req_access_txt = "0";
req_one_access_txt = "35;28"
},
/turf/open/floor/plasteel/cafeteria{
@@ -45799,8 +45642,7 @@
/obj/machinery/door/window/eastleft{
dir = 1;
name = "Kitchen Window";
- req_access_txt = "28";
- req_one_access_txt = "0"
+ req_access_txt = "28"
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -45808,7 +45650,6 @@
/obj/machinery/door/window/eastleft{
dir = 2;
name = "Hydroponics Window";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
/obj/effect/turf_decal/delivery,
@@ -46008,10 +45849,7 @@
/turf/closed/wall,
/area/maintenance/solars/port/aft)
"bTq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
+/turf/open/floor/plating/airless,
/area/engine/engineering)
"bTr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -46084,7 +45922,6 @@
"bTB" = (
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;37"
},
/obj/structure/disposalpipe/segment{
@@ -46773,7 +46610,6 @@
/area/maintenance/port)
"bUS" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;25;28"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -47015,7 +46851,6 @@
/obj/machinery/door/window/westleft{
dir = 4;
name = "Hydroponics Desk";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
/turf/open/floor/plasteel/green{
@@ -47079,6 +46914,7 @@
/turf/closed/wall,
/area/hallway/secondary/service)
"bVA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock{
name = "Service Hall";
req_access_txt = "null";
@@ -47365,7 +47201,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;37;25;28"
},
/turf/open/floor/plating,
@@ -47684,7 +47519,6 @@
/obj/machinery/door/window/westright{
dir = 4;
name = "Hydroponics Desk";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
/obj/item/folder/white{
@@ -47838,9 +47672,6 @@
/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/machinery/light/small{
- dir = 1
- },
/turf/open/floor/plating,
/area/maintenance/starboard)
"bXc" = (
@@ -48252,7 +48083,6 @@
/area/hallway/primary/central)
"bYb" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;35;47"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -48503,7 +48333,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -48597,7 +48426,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;25;28"
},
/turf/open/floor/plating,
@@ -49617,8 +49445,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Hydroponics Backroom";
- req_access_txt = "35";
- req_one_access_txt = "0"
+ req_access_txt = "35"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -49661,8 +49488,7 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
- req_access_txt = "35";
- req_one_access_txt = "0"
+ req_access_txt = "35"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -50034,7 +49860,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5"
},
/turf/open/floor/plating,
@@ -50700,8 +50525,7 @@
/area/engine/atmos)
"ccW" = (
/obj/machinery/door/airlock/external{
- req_access_txt = "24";
- req_one_access_txt = "0"
+ req_access_txt = "24"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -50931,7 +50755,7 @@
},
/area/medical/storage)
"cdv" = (
-/obj/machinery/rnd/protolathe/department/medical,
+/obj/machinery/rnd/production/techfab/department/medical,
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
},
@@ -51148,8 +50972,7 @@
"cdU" = (
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
- req_access_txt = "35";
- req_one_access_txt = "0"
+ req_access_txt = "35"
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
@@ -51219,9 +51042,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ced" = (
@@ -51241,7 +51062,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
@@ -51254,6 +51075,9 @@
name = "Fuel Pipe to Incinerator";
on = 0
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ceg" = (
@@ -51389,8 +51213,7 @@
/obj/structure/table/glass,
/obj/machinery/door/window/eastleft{
name = "First-Aid Supplies";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
@@ -51882,6 +51705,7 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cfq" = (
@@ -51894,7 +51718,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "input port pump"
@@ -51910,6 +51733,7 @@
/area/maintenance/disposal/incinerator)
"cft" = (
/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cfu" = (
@@ -52346,8 +52170,7 @@
"cgp" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Maintenance";
- req_access_txt = "47";
- req_one_access_txt = "0"
+ req_access_txt = "47"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
@@ -52376,6 +52199,7 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cgv" = (
@@ -52398,7 +52222,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cgy" = (
@@ -52629,7 +52452,6 @@
"cgU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -52647,7 +52469,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -52657,7 +52478,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Desk";
req_access_txt = "5"
},
@@ -52829,7 +52649,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/obj/structure/disposalpipe/segment,
@@ -52975,6 +52794,9 @@
/obj/structure/extinguisher_cabinet{
pixel_y = -31
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"chI" = (
@@ -52983,6 +52805,9 @@
dir = 2;
name = "output gas to space"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"chJ" = (
@@ -52993,12 +52818,8 @@
dir = 4
},
/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal/incinerator)
-"chL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
@@ -53328,7 +53149,6 @@
"civ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
@@ -53414,7 +53234,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/machinery/rnd/protolathe/department/science,
+/obj/machinery/rnd/production/protolathe/department/science,
/turf/open/floor/plasteel,
/area/science/lab)
"ciE" = (
@@ -53567,7 +53387,7 @@
/turf/open/floor/engine,
/area/science/explab)
"ciT" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -53623,7 +53443,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
@@ -53993,7 +53812,6 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"cjV" = (
-/obj/machinery/smoke_machine,
/turf/open/floor/plasteel/whiteyellow/side{
dir = 4
},
@@ -54050,7 +53868,7 @@
"cjZ" = (
/obj/item/reagent_containers/glass/beaker/sulphuric,
/obj/effect/turf_decal/stripes/line,
-/obj/machinery/rnd/circuit_imprinter/department/science,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
/turf/open/floor/plasteel,
/area/science/lab)
"cka" = (
@@ -54315,24 +54133,14 @@
/area/maintenance/starboard/aft)
"ckC" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/components/binary/pump{
+/obj/machinery/atmospherics/components/binary/pump/on{
dir = 2;
- name = "Incinerator Output Pump";
- on = 1;
- use_power = 0
+ name = "Incinerator Output Pump"
},
/obj/structure/disposalpipe/segment,
/turf/open/space,
/area/maintenance/disposal/incinerator)
"ckD" = (
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_exterior";
- layer = 3.1;
- idSelf = "incinerator_access_control";
- name = "Incinerator airlock control";
- pixel_x = 8;
- pixel_y = -24
- },
/obj/machinery/light/small{
dir = 8
},
@@ -54343,21 +54151,25 @@
dir = 1;
on = 1
},
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
- name = "Incinerator airlock control";
- pixel_x = 8;
+/obj/machinery/airlock_sensor{
+ id_tag = "incinerator_airlock_sensor";
+ master_tag = "incinerator_airlock_control";
+ pixel_x = -8;
pixel_y = 24
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"ckE" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 8;
+ frequency = 1449;
+ id = "incinerator_airlock_pump"
},
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
@@ -54372,6 +54184,9 @@
dir = 2;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"ckG" = (
@@ -54480,8 +54295,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Observation";
- req_access_txt = "0"
+ name = "Observation"
},
/turf/open/floor/plasteel/dark,
/area/medical/surgery)
@@ -54956,9 +54770,7 @@
/area/maintenance/starboard/aft)
"clX" = (
/obj/machinery/door/airlock/maintenance/abandoned{
- locked = 0;
name = "Storage Room";
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55072,8 +54884,7 @@
"cmn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Observation";
- req_access_txt = "0"
+ name = "Observation"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
@@ -55294,7 +55105,6 @@
"cmM" = (
/obj/machinery/door/airlock{
name = "Research Emergency Storage";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/structure/cable/yellow{
@@ -55312,7 +55122,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/medical{
name = "Research Break Room";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -55469,7 +55278,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cnd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 1;
name = "incinerator output intake"
},
@@ -56185,7 +55994,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/rnd/protolathe/department/service,
+/obj/machinery/rnd/production/techfab/department/service,
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"cox" = (
@@ -56993,8 +56802,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
@@ -58253,8 +58061,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer's Office";
- req_access_txt = "40";
- req_one_access_txt = "0"
+ req_access_txt = "40"
},
/turf/open/floor/plasteel/barber{
dir = 8
@@ -58404,7 +58211,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;9"
},
/turf/open/floor/plating,
@@ -58449,8 +58255,7 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Aft Emergency Storage";
- req_access_txt = "0"
+ name = "Aft Emergency Storage"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -58487,7 +58292,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "7;47;29;12"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -58548,7 +58352,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Research Maintenance";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -58859,8 +58662,7 @@
"ctC" = (
/obj/machinery/door/airlock/maintenance{
name = "Genetics Maintenance";
- req_access_txt = "9";
- req_one_access_txt = "0"
+ req_access_txt = "9"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
@@ -58919,7 +58721,6 @@
"ctM" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Testing Range Maintenance";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
/turf/open/floor/plating,
@@ -59953,8 +59754,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
- req_access_txt = "30";
- req_one_access_txt = "0"
+ req_access_txt = "30"
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
@@ -61076,10 +60876,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
id_tag = "AuxGenetics";
- locked = 0;
name = "Genetics Lab";
- req_access_txt = "9";
- req_one_access_txt = "0"
+ req_access_txt = "9"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -61112,10 +60910,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
id_tag = "AuxGenetics";
- locked = 0;
name = "Genetics Access";
- req_access_txt = "9";
- req_one_access_txt = "0"
+ req_access_txt = "9"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -61441,9 +61237,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 4;
- locked = 0;
name = "Cloning Lab APC";
areastring = "/area/medical/genetics/cloning";
pixel_x = 24
@@ -61613,8 +61408,7 @@
base_state = "right";
dir = 1;
icon_state = "right";
- name = "door";
- req_access_txt = "0"
+ name = "door"
},
/turf/open/floor/engine{
dir = 9;
@@ -61731,7 +61525,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/turf/open/floor/plating,
@@ -62070,8 +61863,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62173,7 +61965,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research Testing Range";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -62373,7 +62164,6 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchExt";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/turf_decal/delivery,
@@ -62577,8 +62367,7 @@
/obj/machinery/button/door{
id = "researchrangeshutters";
name = "Blast Door Control";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
@@ -63535,7 +63324,6 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchExt";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/turf_decal/delivery,
@@ -63642,7 +63430,7 @@
/turf/open/floor/plating/airless,
/area/science/test_area)
"cDx" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plating/airless,
/area/science/test_area)
"cDy" = (
@@ -64379,7 +64167,6 @@
/area/medical/virology)
"cEN" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/obj/structure/disposalpipe/segment,
@@ -65513,7 +65300,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/science/robotics/lab)
@@ -65987,7 +65774,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/turf/open/floor/plating,
@@ -66061,8 +65847,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -66105,7 +65890,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Research Division Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable/yellow{
@@ -66235,7 +66019,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research and Development Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/turf/open/floor/plasteel/whitepurple{
@@ -66365,7 +66148,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -66697,7 +66479,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Research Lab Maintenance";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/obj/effect/turf_decal/stripes/line{
@@ -66802,8 +66583,7 @@
},
/obj/machinery/door/airlock/maintenance/abandoned{
name = "Medical Surplus Storeroom";
- req_access_txt = "12";
- req_one_access_txt = "0"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/aft)
@@ -67429,9 +67209,7 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance/abandoned{
- locked = 0;
name = "Storage Room";
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/turf/open/floor/plating,
@@ -67563,7 +67341,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/maintenance{
name = "Crematorium Maintenance";
- req_access_txt = "0";
req_one_access_txt = "27"
},
/turf/open/floor/plating,
@@ -67576,7 +67353,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Chapel Office Maintenance";
- req_access_txt = "0";
req_one_access_txt = "22"
},
/turf/open/floor/plating,
@@ -67670,7 +67446,6 @@
/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,
@@ -67764,7 +67539,6 @@
/area/hallway/secondary/exit/departure_lounge)
"cLv" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/obj/structure/cable/yellow{
@@ -67831,7 +67605,6 @@
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{
@@ -67856,13 +67629,16 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"cLC" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idInterior = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Incinerator Access Console";
+ airpump_tag = "incinerator_airlock_pump";
+ exterior_door_tag = "incinerator_airlock_exterior";
+ id_tag = "incinerator_access_control";
+ interior_door_tag = "incinerator_airlock_interior";
pixel_x = 8;
pixel_y = -24;
+ sanitize_external = 1;
+ sensor_tag = "incinerator_airlock_sensor";
req_access_txt = "12"
},
/obj/machinery/button/ignition{
@@ -67904,6 +67680,15 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
+"cLE" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1;
+ name = "euthanization chamber freezer";
+ on = 1;
+ target_temperature = 80
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
"cLF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -68099,7 +67884,6 @@
"cMb" = (
/obj/machinery/door/airlock/maintenance{
name = "Chapel Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;22"
},
/obj/structure/cable/yellow{
@@ -68540,8 +68324,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
dir = 4;
@@ -69064,8 +68847,7 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Crematorium";
- req_access_txt = "22;27";
- req_one_access_txt = "0"
+ req_access_txt = "22;27"
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
@@ -69862,7 +69644,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -70487,8 +70269,7 @@
id = "chapel_shutters_space";
name = "chapel shutters control";
pixel_x = -6;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/obj/machinery/light_switch{
pixel_x = 6;
@@ -70521,8 +70302,7 @@
idDoor = "xeno_airlock_exterior";
idSelf = "xeno_airlock_control";
name = "Access Button";
- pixel_x = -24;
- req_access_txt = "0"
+ pixel_x = -24
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -70609,8 +70389,7 @@
/area/chapel/main)
"cRF" = (
/obj/machinery/door/morgue{
- name = "Chapel Garden";
- req_access_txt = "0"
+ name = "Chapel Garden"
},
/turf/open/floor/plasteel/cult{
dir = 2
@@ -70624,8 +70403,7 @@
/obj/machinery/button/door{
id = "chapel_shutters_parlour";
name = "chapel shutters control";
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/turf/open/floor/plasteel/vault,
/area/chapel/main)
@@ -71474,8 +71252,7 @@
},
/obj/machinery/door/airlock/hatch{
name = "Test Chamber Maintenance";
- req_access_txt = "47";
- req_one_access_txt = "0"
+ req_access_txt = "47"
},
/turf/open/floor/plating,
/area/science/xenobiology)
@@ -71827,12 +71604,6 @@
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"cWu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"cWA" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
@@ -71854,10 +71625,7 @@
/area/construction/mining/aux_base)
"cWM" = (
/obj/machinery/door/airlock/external{
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Construction Zone"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
@@ -71881,12 +71649,7 @@
},
/area/construction/mining/aux_base)
"cXI" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = 32
- },
-/obj/machinery/light/small{
- dir = 1
- },
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
"cXR" = (
@@ -71898,12 +71661,11 @@
},
/area/construction/mining/aux_base)
"cXZ" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "13"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
"cYc" = (
@@ -71923,9 +71685,8 @@
},
/area/science/robotics/lab)
"cYj" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
+/obj/structure/closet/firecloset,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
"cYE" = (
@@ -71981,7 +71742,6 @@
},
/obj/machinery/door/airlock/engineering{
name = "Auxillary Base Construction";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -72053,6 +71813,9 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
+"cZv" = (
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"cZR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -72130,7 +71893,7 @@
/turf/open/floor/engine,
/area/science/xenobiology)
"daH" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/engine,
/area/science/xenobiology)
"daI" = (
@@ -72215,6 +71978,15 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"daR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1;
+ external_pressure_bound = 140;
+ name = "server vent";
+ pressure_checks = 0
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"daS" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/circuit/killroom,
@@ -72355,6 +72127,15 @@
/obj/machinery/light/small,
/turf/open/floor/circuit/killroom,
/area/science/xenobiology)
+"dbw" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Kill Chamber";
+ dir = 1;
+ network = list("ss13","rd","xeno");
+ start_active = 1
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"dbE" = (
/obj/machinery/plantgenes,
/obj/effect/turf_decal/stripes/line{
@@ -72380,7 +72161,6 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchInt";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/turf_decal/delivery,
@@ -72398,7 +72178,6 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchInt";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/turf_decal/delivery,
@@ -72459,7 +72238,6 @@
"dbP" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/structure/cable{
@@ -72555,8 +72333,7 @@
idSelf = "xeno_airlock_control";
name = "Access Button";
pixel_x = 29;
- pixel_y = -8;
- req_access_txt = "0"
+ pixel_y = -8
},
/obj/machinery/firealarm{
dir = 2;
@@ -73322,8 +73099,7 @@
"ddp" = (
/obj/machinery/door/airlock/hatch{
name = "Test Chamber Maintenance";
- req_access_txt = "47";
- req_one_access_txt = "0"
+ req_access_txt = "47"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -73423,6 +73199,14 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"ddB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 1;
+ external_pressure_bound = 120;
+ name = "server vent"
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"ddC" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -73447,7 +73231,10 @@
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
"ddO" = (
-/turf/open/floor/plating/airless,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
/area/engine/engineering)
"ddP" = (
/obj/structure/disposalpipe/segment{
@@ -73509,6 +73296,13 @@
},
/turf/open/space,
/area/space)
+"deh" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"dem" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -73521,11 +73315,17 @@
dir = 1
},
/turf/open/floor/plating/airless,
-/area/space/nearstation)
+/area/space)
"der" = (
/obj/structure/closet/secure_closet/engineering_welding,
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
+"deu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/space)
"dev" = (
/obj/machinery/field/generator{
anchored = 1;
@@ -73534,8 +73334,15 @@
/turf/open/floor/plating/airless,
/area/space/nearstation)
"dew" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/turf/open/space,
-/area/space/nearstation)
+/area/space)
"deB" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "engpa";
@@ -73664,6 +73471,10 @@
/obj/structure/cable/white{
icon_state = "1-4"
},
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
"dga" = (
@@ -73673,13 +73484,10 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"dgc" = (
-/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{
- icon_state = "platingdmg3"
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
},
+/turf/open/floor/plating,
/area/maintenance/starboard)
"dgd" = (
/obj/structure/cable/white{
@@ -73700,6 +73508,12 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"dgf" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space,
+/area/space/nearstation)
"dgg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -73711,32 +73525,74 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"dgj" = (
-/obj/structure/grille,
-/obj/structure/cable/white{
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
"dgk" = (
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/corner{
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
"dgm" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
},
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"dgo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgr" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgt" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgu" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space/nearstation)
+"dgv" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"dgw" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
"dgz" = (
/obj/structure/closet/toolcloset,
/obj/effect/turf_decal/delivery,
@@ -73744,13 +73600,134 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"dgA" = (
-/obj/machinery/light{
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"dgB" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"dgI" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgJ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
+/turf/open/space,
+/area/space/nearstation)
+"dgK" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgN" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"dgO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"dgS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"dha" = (
+/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)
+"dhc" = (
+/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)
+"dhe" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
/turf/open/floor/plasteel,
-/area/engine/engineering)
-"dgI" = (
-/turf/closed/wall/mineral/plastitanium,
+/area/engine/atmos)
+"dhg" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dhh" = (
+/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/engine/atmos)
+"dhi" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ icon_state = "left";
+ name = "Inner Pipe Access";
+ req_access_txt = "24"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"dhj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"dhk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"dhl" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/space,
/area/space/nearstation)
"dhn" = (
/obj/structure/table,
@@ -73850,8 +73827,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
dir = 8;
@@ -74242,8 +74218,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/obj/structure/sign/poster/random{
pixel_y = -32
@@ -75055,14 +75030,6 @@
icon_state = "platingdmg2"
},
/area/maintenance/port/fore)
-"drT" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"dsg" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -75103,13 +75070,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"dtL" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space,
-/area/space)
"dtP" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -75405,7 +75365,6 @@
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{
@@ -76140,23 +76099,24 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
-"dPf" = (
+"dQe" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/space)
+"dSf" = (
/obj/structure/cable/white{
- icon_state = "1-4"
+ icon_state = "1-8"
},
/obj/structure/grille,
/obj/effect/turf_decal/stripes/line{
- dir = 10
+ dir = 6
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"dPp" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"dYu" = (
/obj/machinery/door/airlock/external{
name = "Auxiliary Airlock"
@@ -76166,28 +76126,6 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"dYv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1;
- external_pressure_bound = 140;
- name = "server vent";
- pressure_checks = 0
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"dZD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space)
-"eln" = (
-/turf/open/space/basic,
-/area/engine/engineering)
-"enN" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"eoK" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -76203,6 +76141,13 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
+"epK" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/power/grounding_rod,
+/turf/open/floor/plating/airless,
+/area/space)
"eqq" = (
/obj/item/screwdriver,
/obj/structure/table/reinforced,
@@ -76220,17 +76165,6 @@
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"esV" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"evy" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -76241,23 +76175,8 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"eEu" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "External Containment Access";
- req_access_txt = "10; 13"
- },
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
+"eFi" = (
+/obj/machinery/light/small,
/turf/open/floor/plating,
/area/engine/engineering)
"eFN" = (
@@ -76267,6 +76186,16 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
+"eHe" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"eWn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space)
"eXy" = (
/obj/machinery/airalarm{
pixel_y = 32
@@ -76290,63 +76219,30 @@
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/engine/engineering)
-"ffK" = (
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"fjy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/space)
-"foU" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the Engine.";
- dir = 8;
- layer = 4;
- name = "Engine Monitor";
- network = list("singularity");
- pixel_x = 30
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engineering)
"fDD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"fGs" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
+"fRj" = (
+/obj/structure/lattice,
+/turf/open/space,
/area/engine/engineering)
-"fWO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+"fSi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
},
-/turf/open/floor/plating/airless,
-/area/space)
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"gfh" = (
/obj/machinery/libraryscanner,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"gha" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 1;
- external_pressure_bound = 120;
- name = "server vent"
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"gix" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -76365,13 +76261,11 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"goZ" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable/white{
- icon_state = "4-8"
+"gut" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
},
-/turf/open/floor/plating/airless,
/area/engine/engineering)
"gEk" = (
/obj/structure/cable/yellow{
@@ -76379,6 +76273,14 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"gFN" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Fore Starboard";
+ dir = 8;
+ network = list("singularity")
+ },
+/turf/open/floor/plating/airless,
+/area/space)
"gGT" = (
/obj/effect/landmark/start/scientist,
/obj/structure/chair/office/light{
@@ -76398,14 +76300,6 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/atmos)
-"gKb" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Fore Starboard";
- dir = 8;
- network = list("singularity")
- },
-/turf/open/floor/plating/airless,
-/area/space)
"gLC" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel,
@@ -76416,12 +76310,27 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"gPi" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/engineering)
"gRS" = (
/obj/structure/table/reinforced,
/obj/item/device/integrated_electronics/analyzer,
/obj/item/device/integrated_circuit_printer,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"gXY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"hfJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -76438,9 +76347,22 @@
},
/turf/open/floor/plating,
/area/security/prison)
-"hWU" = (
+"hLl" = (
+/obj/structure/cable/white,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ state = 2
+ },
/turf/open/floor/plating/airless,
-/area/space)
+/area/engine/engineering)
+"igY" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/engineering)
"ioI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76468,46 +76390,21 @@
},
/turf/open/floor/plasteel/whitepurple,
/area/science/lab)
-"iOa" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/maintenance/starboard)
-"iTS" = (
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/effect/turf_decal/delivery,
-/obj/structure/table,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engineering)
-"iYY" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"jjF" = (
-/obj/structure/cable/white{
+"iOq" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
icon_state = "2-8"
},
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+/turf/open/space,
+/area/space)
+"jsE" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
},
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"jwP" = (
-/obj/machinery/camera{
- c_tag = "Xenobiology Lab - Kill Chamber";
- dir = 1;
- network = list("ss13","rd","xeno");
- start_active = 1
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"jwW" = (
/turf/closed/wall/mineral/plastitanium,
/area/crew_quarters/fitness/recreation)
@@ -76524,13 +76421,22 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"jyF" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"jyQ" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -76538,21 +76444,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
-"jFx" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "13"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"jIV" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
"jKK" = (
/obj/machinery/door/airlock/external{
req_access_txt = "13"
@@ -76562,12 +76453,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"jYQ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"kfu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
@@ -76575,6 +76460,20 @@
"krD" = (
/turf/closed/wall,
/area/science/circuit)
+"kuT" = (
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/effect/turf_decal/delivery,
+/obj/structure/table,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/engineering)
"kys" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -76658,6 +76557,13 @@
/obj/item/device/multitool,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"ltM" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"lzk" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -76673,13 +76579,21 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"lHL" = (
-/turf/open/space/basic,
-/area/space/nearstation)
-"lLj" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
+"lAS" = (
+/obj/structure/cable/white{
+ icon_state = "2-4"
},
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"lHS" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
/area/engine/engineering)
"lMz" = (
/obj/structure/falsewall,
@@ -76722,12 +76636,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"moI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/space)
"mvj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -76737,12 +76645,6 @@
},
/turf/closed/wall,
/area/hallway/secondary/service)
-"mwK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/space)
"mzh" = (
/obj/machinery/firealarm{
dir = 1;
@@ -76750,32 +76652,29 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"mWp" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"neu" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"ngl" = (
/obj/machinery/bookbinder,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"nnK" = (
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"noG" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/circuit)
-"nte" = (
-/obj/machinery/the_singularitygen/tesla,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"nwU" = (
+"ngK" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
@@ -76795,6 +76694,23 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
+"nnK" = (
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"noG" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/circuit)
"nyo" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -76816,11 +76732,20 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
+"nDu" = (
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"nIb" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -76829,33 +76754,10 @@
},
/turf/open/floor/plasteel,
/area/construction/storage/wing)
-"nKh" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
"obb" = (
/obj/structure/target_stake,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"obN" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space,
-/area/space)
-"ocj" = (
-/obj/structure/cable/white{
- icon_state = "2-4"
- },
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"ocT" = (
/obj/machinery/light{
dir = 1
@@ -76902,6 +76804,19 @@
/obj/item/device/integrated_electronics/debugger,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"oMi" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"oRL" = (
/obj/docking_port/stationary{
dir = 2;
@@ -76922,6 +76837,22 @@
/obj/item/pen,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"pdW" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"pmc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"pvA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -76954,15 +76885,10 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
-"pPA" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 1;
- name = "euthanization chamber freezer";
- on = 1;
- target_temperature = 80
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
+"pOP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"pSX" = (
/obj/machinery/door/airlock/external{
name = "Auxiliary Escape Airlock"
@@ -76972,20 +76898,22 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"pVo" = (
-/obj/machinery/light,
-/obj/machinery/vending/kink,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 2
+"qbP" = (
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/area/crew_quarters/locker)
-"pWF" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/turf/open/floor/plating,
+/area/engine/engineering)
+"qex" = (
+/obj/structure/grille,
+/obj/structure/cable/white{
+ icon_state = "1-4"
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"qkB" = (
+/turf/open/space/basic,
+/area/engine/engineering)
"qnJ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -77006,6 +76934,19 @@
},
/turf/open/floor/plasteel,
/area/science/misc_lab)
+"qrK" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"qvZ" = (
+/obj/structure/particle_accelerator/particle_emitter/left{
+ icon_state = "emitter_left";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"qBh" = (
/obj/structure/table,
/obj/item/device/paicard,
@@ -77016,12 +76957,6 @@
"qBq" = (
/turf/closed/wall/mineral/plastitanium,
/area/hallway/secondary/entry)
-"qJG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"qJZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -77036,6 +76971,17 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"raW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"rqn" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/engine/engineering)
"rzX" = (
/obj/structure/chair/office/light{
dir = 1;
@@ -77045,18 +76991,6 @@
dir = 1
},
/area/science/lab)
-"rEi" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"rFx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/engine/engineering)
"rQK" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -77072,33 +77006,17 @@
dir = 8
},
/area/security/main)
+"rSw" = (
+/obj/machinery/light,
+/obj/machinery/vending/kink,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
"rSL" = (
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel,
/area/science/mixing)
-"rTo" = (
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"rVX" = (
-/obj/structure/particle_accelerator/particle_emitter/left{
- icon_state = "emitter_left";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"rWa" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
"sdi" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -77109,13 +77027,19 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/space/nearstation)
+"sCz" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/space,
+/area/space)
"sGh" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -77123,6 +77047,10 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
+"sIb" = (
+/obj/machinery/the_singularitygen/tesla,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"sIA" = (
/obj/machinery/door/airlock/external{
name = "Transport Airlock"
@@ -77135,21 +77063,43 @@
"sJW" = (
/turf/closed/wall/mineral/plastitanium,
/area/engine/break_room)
-"sOW" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"sSU" = (
-/turf/closed/wall/r_wall,
-/area/space)
-"tdB" = (
-/obj/machinery/light/small{
+"sNd" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
+/obj/machinery/door/airlock/external{
+ name = "External Containment Access";
+ req_access_txt = "10; 13"
},
-/area/maintenance/starboard/fore)
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"sVX" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Aft Starboard";
+ dir = 8;
+ network = list("singularity")
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"sXB" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"tjH" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/libraryconsole/bookmanagement,
@@ -77164,6 +77114,10 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
+"txb" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
"txj" = (
/obj/structure/chair/office/light{
dir = 1
@@ -77180,10 +77134,6 @@
},
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
-"tMT" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/engine/engineering)
"tVY" = (
/obj/structure/closet/crate,
/obj/item/target/alien,
@@ -77196,6 +77146,12 @@
/obj/item/gun/energy/laser/practice,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"ucX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"upN" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -77209,6 +77165,10 @@
/obj/machinery/vending/assist,
/turf/open/floor/plasteel,
/area/science/mixing)
+"uAK" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"uGW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -77234,11 +77194,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"uQo" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engineering)
"uRM" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -77251,7 +77206,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/rnd/protolathe/department/science,
+/obj/machinery/rnd/production/protolathe/department/science,
/turf/open/floor/plasteel/white,
/area/science/circuit)
"uYk" = (
@@ -77267,30 +77222,38 @@
},
/turf/open/floor/plasteel,
/area/science/misc_lab)
-"vmz" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+"vwk" = (
+/turf/open/floor/plating/airless,
/area/space)
-"vAk" = (
-/obj/machinery/light/small{
- dir = 1
+"vyx" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/disposal/incinerator)
"vLD" = (
/obj/structure/lattice,
/turf/open/space/basic,
/area/space)
-"vSl" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"vOi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
},
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"wcK" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/white{
- icon_state = "1-8"
+ icon_state = "2-8"
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"wgw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"wiZ" = (
/obj/machinery/door/airlock/external{
name = "Security External Airlock";
@@ -77303,14 +77266,20 @@
/area/security/prison)
"wxc" = (
/obj/machinery/door/airlock/external{
- req_access_txt = "24";
- req_one_access_txt = "0"
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
/turf/open/floor/plating,
/area/engine/atmos)
+"wEl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/space)
"wFH" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -77318,6 +77287,12 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"wHp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"wKo" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -77341,43 +77316,45 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/science/misc_lab)
-"xcM" = (
-/obj/structure/closet/firecloset,
+"xfN" = (
/obj/machinery/light{
dir = 4
},
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the Engine.";
+ dir = 8;
+ layer = 4;
+ name = "Engine Monitor";
+ network = list("singularity");
+ pixel_x = 30
+ },
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
/area/engine/engineering)
-"xfK" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/space)
"xkG" = (
/obj/item/device/integrated_electronics/wirer,
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"xqB" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"xlt" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
},
-/obj/machinery/power/emitter{
- anchored = 1;
- state = 2
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"xrD" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/engineering)
"xse" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/structure/cable{
@@ -77405,19 +77382,6 @@
/obj/structure/chair/comfy,
/turf/open/floor/plasteel,
/area/science/misc_lab)
-"xLP" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space,
-/area/space)
-"xNI" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"xVl" = (
/turf/closed/wall,
/area/hallway/secondary/service)
@@ -77428,24 +77392,12 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"xWZ" = (
-/obj/structure/cable/white{
- icon_state = "2-8"
+"yae" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/closed/wall/r_wall,
+/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"yeY" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Aft Starboard";
- dir = 8;
- network = list("singularity")
- },
-/turf/open/floor/plating/airless,
-/area/space)
"ygk" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -77459,6 +77411,16 @@
/obj/machinery/light,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"ylZ" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
(1,1,1) = {"
aaa
@@ -110317,7 +110279,7 @@ cRi
cRi
cRi
daP
-pPA
+cLE
dlV
aaa
aaa
@@ -110832,8 +110794,8 @@ cSn
cRi
dmq
cRi
-ffK
-ffK
+cZv
+cZv
cRi
aaf
aag
@@ -111089,8 +111051,8 @@ cSn
cRi
ddx
ddz
-dYv
-ffK
+daR
+cZv
cRe
aaa
aaa
@@ -111603,8 +111565,8 @@ daK
cRi
bIv
ddz
-gha
-ffK
+ddB
+cZv
cRe
aaa
aaf
@@ -111860,8 +111822,8 @@ daN
cRi
dmr
cRi
-ffK
-jwP
+cZv
+dbw
cRi
aaa
aag
@@ -112521,7 +112483,7 @@ aPK
aQV
aOv
aTt
-pVo
+rSw
aUM
aYe
dnh
@@ -116930,10 +116892,10 @@ caX
ccH
cec
cfp
-cfq
+vyx
chJ
-cgz
-cgz
+wgw
+pmc
cgz
cgz
cgz
@@ -117445,7 +117407,7 @@ ccJ
cee
cfr
cgx
-chL
+cgx
cja
ckE
cmd
@@ -117653,8 +117615,8 @@ aFu
aBI
aBI
aJn
-lLj
-lLj
+rqn
+rqn
aNq
aBI
aPZ
@@ -117899,7 +117861,7 @@ arJ
arI
dnh
dqu
-tdB
+doh
axO
axY
aAo
@@ -117909,12 +117871,12 @@ aEn
aFv
aGV
aHX
-aBO
-aBO
-aBO
-aBO
+aCX
+aCX
+aCX
+aCX
aOO
-aBO
+aCX
aRp
aSv
aTH
@@ -117956,12 +117918,12 @@ bxc
bxc
bxc
ccL
-bxc
+bxl
cft
-cgz
-cgz
-cgz
-cgz
+pOP
+pOP
+pOP
+gXY
cgz
cng
cgz
@@ -118416,7 +118378,7 @@ avt
awJ
axS
axY
-jIV
+gut
ddW
aCT
aEp
@@ -118677,15 +118639,15 @@ aAr
ddX
aCU
aCW
-aBO
+aCX
aGX
-aBO
-aBO
-aBO
+aCX
+aCX
+aCX
aSB
-aBO
-aBO
-aBO
+aCX
+aCX
+aCX
aGX
aBK
aTK
@@ -118930,23 +118892,23 @@ avv
axY
axU
ayS
-enN
+uAK
ddX
deb
-aBO
-aBO
-iTS
+aCX
+aCX
+kuT
deM
-uQo
-foU
+xrD
+xfN
aMg
-xcM
+gPi
dfh
-aBO
-aBO
+aCX
+aCX
aBK
-dPp
-rFx
+deh
+aVe
axY
aYu
aYu
@@ -119190,7 +119152,7 @@ ddP
aAt
aBL
deb
-aBO
+aCX
aFA
axY
axY
@@ -119199,11 +119161,11 @@ axY
aMh
axY
axY
-nKh
-aBO
+igY
+aCX
aSz
aTK
-aVe
+yae
aJu
aYu
aZL
@@ -119447,7 +119409,7 @@ aAu
ddQ
aBM
aCV
-aBO
+aCX
aFB
axY
daW
@@ -119457,10 +119419,10 @@ aMi
cpR
axY
aQd
-aBO
+aCX
aSA
aTK
-aVe
+yae
aJu
aYu
aZM
@@ -119704,20 +119666,20 @@ ayV
aAv
aBN
aCW
-aBO
+aCX
aFA
aGZ
-qJG
+ucX
aJu
aKG
aJu
dBy
aGZ
-nKh
-aBO
+igY
+aCX
dfD
aTK
-rWa
+vOi
aJu
aYu
aZN
@@ -119958,21 +119920,21 @@ avz
axY
axY
ayW
-bTq
-dgA
-aBO
+fSi
aBO
+aCX
+aCX
aFC
axY
-qJG
+ucX
aJu
aKH
aMk
aNu
axY
dfp
+aCX
aBO
-dgA
dfP
dfY
axY
@@ -120217,26 +120179,26 @@ axY
ayX
axY
axY
-aBO
-aBO
+aCY
+aCX
der
axY
-qJG
+ucX
aJu
aKI
tDM
dBy
axY
dlI
-aBO
+ltM
axY
axY
ayX
axY
atm
dgc
-alq
-apc
+aqq
+aqr
aWu
bif
bif
@@ -120470,7 +120432,7 @@ ati
ajb
avB
axY
-jYQ
+ddO
bUw
aJu
axY
@@ -120478,10 +120440,10 @@ axY
axY
axY
djt
-qJG
+ucX
daZ
dbb
-rVX
+qvZ
dBy
djt
axY
@@ -120489,10 +120451,10 @@ axY
axY
aJu
bUw
-iYY
+eFi
axY
-alq
-alq
+dgo
+apc
cXZ
atm
bfZ
@@ -120728,30 +120690,30 @@ ajb
avC
axY
axY
-eEu
+sNd
axY
axY
-ddO
+bTq
aEr
-ddO
+bTq
djt
-qJG
+ucX
aJu
-rEi
+qbP
dfa
aNv
djt
-ddO
+bTq
djx
axY
axY
-nwU
+ngK
axY
axY
-alq
+dgp
cXI
cYj
-iOa
+atm
bga
big
bga
@@ -120770,7 +120732,7 @@ bFS
bHy
bIV
bKC
-bAQ
+bMi
bNU
bMg
bQV
@@ -120985,12 +120947,12 @@ dpL
avD
axY
axY
-xNI
-ddO
-ddO
-ddO
-ddO
-ddO
+qrK
+bTq
+bTq
+bTq
+bTq
+bTq
djt
djt
djt
@@ -120998,17 +120960,17 @@ aRm
djt
djt
djt
-ddO
-ddO
-ddO
-ddO
+bTq
+bTq
+bTq
+bTq
dga
dgd
-dgj
+qex
+dgp
+alr
+atm
atm
-alq
-jFx
-iOa
bgb
cTu
bgb
@@ -121027,8 +120989,8 @@ bFT
bHz
bIW
bKD
-bCi
-bCi
+dhe
+dhg
bPu
bPu
bPu
@@ -121243,9 +121205,9 @@ avE
axY
ayc
aza
-ddO
+bTq
aaa
-aCY
+epK
dem
dem
deD
@@ -121259,12 +121221,12 @@ dem
dem
dfI
aaa
-ddO
-ddO
+bTq
+bTq
aYx
-sSU
-lHL
-lMJ
+dgr
+dgw
+dgA
dgI
bgb
cTi
@@ -121285,7 +121247,7 @@ bHy
bIX
bKE
bKE
-bKE
+dhh
bPv
bKE
bKE
@@ -121495,34 +121457,34 @@ apn
aqy
arT
apm
-vAk
+dnS
avB
axY
-goZ
-ddO
+lHS
+bTq
aAx
-sOW
+txb
aIe
aOS
-mwK
-mwK
-mwK
-mwK
-mwK
-mwK
-mwK
-mwK
-mwK
+deu
+deu
+deu
+deu
+deu
+deu
+deu
+deu
+deu
dBB
aIe
-sOW
-cWu
-ddO
+txb
+aVh
+bTq
aYx
-sSU
-lMJ
-lMJ
-lHL
+dgf
+dgj
+ack
+dgJ
bgb
bij
bgb
@@ -121542,7 +121504,7 @@ bHA
bIY
bKF
bMk
-bNV
+dhi
bPw
bQW
bSj
@@ -121755,12 +121717,12 @@ atk
aux
avF
dqT
-esV
-xqB
+mWp
+hLl
aAx
aaa
aIe
-dZD
+den
dev
aav
aav
@@ -121773,13 +121735,13 @@ dev
dfz
aIe
aaa
-cWu
+aVh
dge
+oMi
azd
-sSU
-lMJ
-lMJ
-lHL
+azd
+dgB
+dgK
aaa
cUL
aaa
@@ -121799,7 +121761,7 @@ bHB
bIZ
bKG
bMl
-bKG
+dhj
bIZ
bKG
bMl
@@ -122012,10 +121974,10 @@ atl
auy
dnS
dqT
-fGs
-ddO
+jsE
+bTq
aAx
-sOW
+txb
def
aCZ
aav
@@ -122027,16 +121989,16 @@ aaa
aav
aav
aav
-xfK
-obN
-sOW
-cWu
-ddO
+dQe
+dew
+txb
+aVh
+bTq
dgg
-sSU
-lMJ
-lHL
-lHL
+dgt
+dgk
+dgv
+dgJ
anT
aaf
aaf
@@ -122056,7 +122018,7 @@ bza
bJa
bza
bFX
-bza
+dhk
bJa
bza
bFX
@@ -122269,12 +122231,12 @@ apm
dnh
dnS
dqT
-xWZ
-dPf
+ylZ
+xlt
aAx
aaa
aIe
-dZD
+den
aav
aav
aaa
@@ -122287,33 +122249,33 @@ aav
dfz
aIe
aaa
-cWu
+aVh
aWK
+nDu
+dgt
dgk
-sSU
-lMJ
-lHL
-lHL
-anT
-dew
-dew
-aaf
-dew
-bpw
-dew
-dew
-aaf
-aaf
-aaf
-aaf
+dgB
+dgM
+dgN
+dgO
+dgO
+dgw
+dgO
+dgS
+dgO
+dgO
+dgw
+dgw
+dgw
+dgw
bCz
-aaf
-bFY
-aaf
-bJb
-aaf
-bFY
-aaf
+dgw
+dha
+dgw
+dhc
+dgw
+dha
+dhl
bJb
aaf
bFY
@@ -122527,9 +122489,9 @@ auz
dqp
dqT
axY
-fGs
+jsE
aAx
-vmz
+eHe
def
aCZ
aaa
@@ -122537,20 +122499,20 @@ aaa
aaa
ddZ
cDu
-fWO
+raW
aaa
vLD
dev
-xfK
-obN
-vmz
-cWu
+dQe
+dew
+eHe
+aVh
dgg
axY
-sSU
-lMJ
-lHL
-lHL
+azd
+azd
+dgv
+aaf
anT
aaa
aaa
@@ -122784,29 +122746,29 @@ auA
dnS
dqT
axY
-fGs
-ddO
-sOW
+jsE
+bTq
+txb
aIe
-dZD
+den
lMJ
aaf
aaf
-den
-nte
+wHp
+sIb
aMo
aaf
aaf
lMJ
dfz
aIe
-sOW
-ddO
+txb
+bTq
dgg
axY
-sSU
-lMJ
-lHL
+dgt
+dgk
+dgB
aaa
anT
aaa
@@ -123041,30 +123003,30 @@ auB
avG
dqT
axY
-fGs
+jsE
aAx
-vmz
+eHe
def
aCZ
dev
vLD
aaa
-fjy
+wEl
deY
-moI
+eWn
aaa
aaa
aaa
-xfK
-obN
-vmz
-cWu
+dQe
+dew
+eHe
+aVh
dgg
axY
-sSU
-lMJ
-lHL
-lHL
+dgk
+dgk
+dgv
+aaf
anT
aaa
aaa
@@ -123297,12 +123259,12 @@ dnh
dnh
jKK
dqT
-ocj
-rTo
+lAS
+dSf
aAx
aaa
aIe
-dZD
+den
aav
aav
aaa
@@ -123315,12 +123277,12 @@ aav
dfz
aIe
aaa
-cWu
-jjF
+aVh
+pdW
+sXB
+dgu
dgm
-sSU
-lMJ
-lHL
+dgB
aaa
anT
aaa
@@ -123554,11 +123516,11 @@ atn
bOY
avG
dqT
-fGs
-ddO
+jsE
+bTq
aAx
-sOW
-dtL
+txb
+iOq
aCZ
aav
aav
@@ -123569,16 +123531,16 @@ vLD
aaa
aav
aav
-xfK
-xLP
-sOW
-pWF
-ddO
+dQe
+sCz
+txb
+neu
+bTq
dgg
-sSU
-lMJ
-lHL
-lHL
+dgv
+aye
+dgv
+aaf
anT
aaf
aaf
@@ -123811,12 +123773,12 @@ dnh
dnh
lNZ
dqT
-drT
-xqB
+wcK
+hLl
aAx
aaa
-vmz
-dZD
+eHe
+den
dev
aav
aaa
@@ -123827,13 +123789,13 @@ aav
aav
dev
dfz
-vmz
+eHe
aaa
-cWu
+aVh
dge
-vSl
-sSU
-lMJ
+jyF
+aaa
+aaf
aaa
aaa
aaf
@@ -124070,27 +124032,27 @@ ack
dqT
axY
axY
-ddO
-hWU
-hWU
-gKb
-hWU
-hWU
-hWU
-hWU
-hWU
-hWU
-hWU
-hWU
-hWU
-yeY
-hWU
-hWU
-ddO
+bTq
+vwk
+vwk
+gFN
+vwk
+vwk
+vwk
+vwk
+vwk
+vwk
+vwk
+vwk
+vwk
+sVX
+vwk
+vwk
+bTq
axY
axY
-sSU
-lMJ
+aaa
+aaf
aaa
aaa
aaf
@@ -124346,8 +124308,8 @@ axY
axY
axY
axY
-sSU
-lMJ
+aaf
+aaf
aaa
aaa
aaa
@@ -124600,11 +124562,11 @@ axY
axY
axY
axY
-eln
-tMT
+qkB
+fRj
aaa
-lHL
-lMJ
+aaf
+aaf
aaa
aaa
aaa
@@ -125095,26 +125057,26 @@ aaa
aaa
aaa
aaa
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaf
aai
aaa
diff --git a/_maps/cit_map_files/OmegaStation/OmegaStation.dmm b/_maps/cit_map_files/OmegaStation/OmegaStation.dmm
index ccef5665e1..81623cd949 100644
--- a/_maps/cit_map_files/OmegaStation/OmegaStation.dmm
+++ b/_maps/cit_map_files/OmegaStation/OmegaStation.dmm
@@ -521,6 +521,24 @@
dir = 1
},
/area/bridge)
+"abb" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 28;
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Bar";
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/bar/atrium)
"abc" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -871,6 +889,18 @@
dir = 4
},
/area/bridge)
+"abJ" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/bar/atrium)
"abK" = (
/obj/structure/window/reinforced{
dir = 8
@@ -1443,7 +1473,6 @@
},
/obj/machinery/door/airlock/command{
name = "Council Chambers";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1545,7 +1574,6 @@
},
/obj/machinery/door/airlock/command{
name = "Council Chambers";
- req_access = null;
req_access_txt = "19"
},
/obj/effect/turf_decal/stripes/line{
@@ -1769,7 +1797,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -26;
- req_access_txt = "0";
use_power = 0
},
/obj/effect/landmark/start/captain,
@@ -1919,7 +1946,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Quarters";
- req_access = null;
req_access_txt = "57"
},
/obj/effect/turf_decal/stripes/line{
@@ -2074,7 +2100,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2120,7 +2145,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -2656,7 +2680,6 @@
},
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Office";
- req_access = null;
req_access_txt = "57"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2888,7 +2911,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Emergency Escape";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -3239,9 +3261,8 @@
pixel_y = 3
},
/obj/item/storage/secure/briefcase,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/light{
@@ -3385,7 +3406,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -4019,7 +4039,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/stripes/line{
@@ -4193,7 +4212,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -4464,7 +4482,7 @@
/turf/open/floor/plating,
/area/security/brig)
"aiV" = (
-/obj/machinery/rnd/protolathe/department/security,
+/obj/machinery/rnd/production/techfab/department/security,
/turf/open/floor/plasteel/red/side{
dir = 8
},
@@ -5908,7 +5926,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/effect/turf_decal/stripes/line{
@@ -6004,7 +6021,7 @@
/obj/structure/cable/white{
icon_state = "0-8"
},
-/obj/machinery/rnd/protolathe/department/cargo,
+/obj/machinery/rnd/production/techfab/department/cargo,
/turf/open/floor/plasteel/brown{
dir = 4
},
@@ -6509,9 +6526,8 @@
},
/obj/item/storage/lockbox/loyalty,
/obj/structure/table/reinforced,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/camera{
@@ -7891,7 +7907,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/turf_decal/stripes/line{
@@ -7980,9 +7995,8 @@
/area/security/brig)
"apy" = (
/obj/machinery/vending/security,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/light{
@@ -8288,8 +8302,8 @@
"apX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/delivery,
-/obj/machinery/rnd/protolathe/department/service,
/obj/effect/turf_decal/stripes/box,
+/obj/machinery/rnd/production/techfab/department/service,
/turf/open/floor/plasteel,
/area/crew_quarters/bar/atrium)
"apY" = (
@@ -9812,8 +9826,7 @@
"asU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10185,8 +10198,7 @@
"atO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -10432,22 +10444,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar/atrium)
-"auh" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 28;
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Bar";
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/bar/atrium)
"aui" = (
/obj/machinery/status_display,
/turf/closed/wall,
@@ -10955,16 +10951,6 @@
dir = 5
},
/area/crew_quarters/bar/atrium)
-"avm" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/bar/atrium)
"avn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -14458,9 +14444,8 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"aCL" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -18864,7 +18849,7 @@
/obj/structure/cable/white{
icon_state = "1-4"
},
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel/yellow/side{
dir = 4
@@ -19085,7 +19070,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Telecomms Control Room";
- req_access = null;
req_access_txt = "19; 61"
},
/obj/structure/cable{
@@ -19261,7 +19245,7 @@
network = list("engine");
pixel_y = -32
},
-/obj/machinery/rnd/protolathe/department/engineering,
+/obj/machinery/rnd/production/protolathe/department/engineering,
/obj/effect/turf_decal/stripes/box,
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -19659,9 +19643,8 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
@@ -21014,7 +20997,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/obj/effect/turf_decal/stripes/line{
@@ -21861,7 +21843,6 @@
"aSM" = (
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/obj/structure/cable{
@@ -22062,9 +22043,8 @@
pixel_y = 3
},
/obj/item/storage/box/bodybags,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/vault/side{
@@ -22628,7 +22608,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 5
},
-/obj/machinery/rnd/protolathe/department/science,
+/obj/machinery/rnd/production/protolathe/department/science,
/turf/open/floor/plasteel/vault/side{
dir = 4
},
@@ -23035,7 +23015,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 6
},
-/obj/machinery/rnd/circuit_imprinter/department/science,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
/turf/open/floor/plasteel/vault/side{
dir = 4
},
@@ -23644,7 +23624,6 @@
"aWN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
@@ -23718,7 +23697,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research and Development Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -24066,7 +24044,6 @@
"aXF" = (
/obj/machinery/door/airlock/command{
name = "Research Division Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable/white{
@@ -24657,8 +24634,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/door/window/eastleft{
name = "First-Aid Supplies";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/open/floor/plasteel,
/area/medical/medbay/zone3)
@@ -25220,9 +25196,8 @@
"aZU" = (
/obj/machinery/recharge_station,
/obj/effect/landmark/start/cyborg,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/power/apc/highcap/ten_k{
@@ -25492,8 +25467,8 @@
dir = 5
},
/obj/effect/turf_decal/bot,
-/obj/machinery/rnd/protolathe/department/medical,
/obj/effect/turf_decal/stripes/box,
+/obj/machinery/rnd/production/techfab/department/medical,
/turf/open/floor/plasteel,
/area/medical/medbay/zone3)
"bav" = (
@@ -26279,7 +26254,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -26;
- req_access_txt = "0";
use_power = 0
},
/obj/effect/turf_decal/bot,
@@ -27513,8 +27487,7 @@
"beB" = (
/obj/machinery/door/window{
dir = 8;
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/turf/open/floor/plasteel/bar,
/area/maintenance/port)
@@ -27770,9 +27743,8 @@
/area/maintenance/port)
"bfe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/blue/corner{
@@ -29650,8 +29622,7 @@
/obj/machinery/button/door{
id = "chapelprivacy";
name = "Chapel Privacy Shutters";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/turf/open/floor/plasteel/chapel,
/area/chapel/main)
@@ -30083,9 +30054,8 @@
},
/obj/item/storage/box/syringes,
/obj/item/extinguisher/mini,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/newscaster{
@@ -30295,7 +30265,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"bkC" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
@@ -31714,8 +31684,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -31757,22 +31726,10 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"dqM" = (
+"eDa" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/crew_quarters/cryopod)
-"eJF" = (
-/obj/structure/cable/white{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/medical/cryo";
- dir = 2;
- name = "Cryogenics APC";
- pixel_y = -24
- },
-/turf/open/floor/plasteel/purple,
-/area/crew_quarters/cryopod)
"fWz" = (
/obj/machinery/door/airlock/external{
name = "External Docking Port";
@@ -31786,21 +31743,20 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"gHi" = (
+"iJY" = (
+/obj/machinery/cryopod,
+/turf/open/floor/plasteel/purple,
+/area/crew_quarters/cryopod)
+"jDa" = (
/obj/machinery/computer/cryopod{
pixel_x = 25
},
/turf/open/floor/plasteel/purple,
/area/crew_quarters/cryopod)
-"icS" = (
-/obj/machinery/cryopod,
-/turf/open/floor/plasteel/purple,
-/area/crew_quarters/cryopod)
"kKd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/turf_decal/stripes/line{
@@ -32675,8 +32631,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -33707,7 +33662,6 @@
"sNk" = (
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65"
},
/obj/effect/turf_decal/delivery,
@@ -33866,7 +33820,6 @@
"sNy" = (
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65"
},
/obj/effect/turf_decal/delivery,
@@ -34308,9 +34261,6 @@
"sPY" = (
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"usJ" = (
-/turf/closed/wall,
-/area/crew_quarters/cryopod)
"uxJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -34349,6 +34299,21 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"xux" = (
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/cryopod";
+ dir = 2;
+ name = "Cryogenics APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/purple,
+/area/crew_quarters/cryopod)
+"xIT" = (
+/turf/closed/wall,
+/area/crew_quarters/cryopod)
(1,1,1) = {"
aaa
@@ -77105,8 +77070,8 @@ ajx
akA
alt
amm
-eJF
-usJ
+xux
+xIT
aoT
apZ
ara
@@ -77363,7 +77328,7 @@ akB
alk
amm
amm
-dqM
+eDa
aoU
aqa
arg
@@ -77618,16 +77583,16 @@ aiC
ajz
akC
alk
-icS
-gHi
-dqM
+iJY
+jDa
+eDa
aoV
aqb
arh
asl
atm
-auh
-avm
+abb
+abJ
awr
awZ
axT
diff --git a/_maps/cit_map_files/PubbyStation/PubbyStation.dmm b/_maps/cit_map_files/PubbyStation/PubbyStation.dmm
index b21ac7ff8c..ee60df06de 100644
--- a/_maps/cit_map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/cit_map_files/PubbyStation/PubbyStation.dmm
@@ -2,12 +2,6 @@
"aaa" = (
/turf/open/space/basic,
/area/space)
-"aau" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
"aby" = (
/obj/structure/lattice,
/obj/structure/grille,
@@ -1455,7 +1449,7 @@
/area/ai_monitored/turret_protected/aisat_interior)
"afy" = (
/obj/effect/landmark/start/cyborg,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"afz" = (
@@ -1481,6 +1475,9 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
"afC" = (
+/obj/machinery/light{
+ dir = 8
+ },
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
@@ -1735,8 +1732,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
@@ -1764,7 +1760,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65"
},
/turf/open/floor/plating,
@@ -1834,8 +1829,7 @@
/area/security/prison)
"agC" = (
/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
+ name = "Unisex Restroom"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
@@ -1911,7 +1905,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -1956,7 +1949,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -1989,7 +1981,6 @@
},
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65"
},
/turf/open/floor/plating,
@@ -2513,11 +2504,8 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
- aiControlDisabled = 0;
- id_tag = null;
- locked = 0;
+ aiControlDisabled = 1;
name = "Prisoner Transfer Centre";
- req_access = null;
req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -2818,7 +2806,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Equipment Room";
- req_access = null;
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -2829,7 +2816,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Equipment Room";
- req_access = null;
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -3185,14 +3171,9 @@
/area/security/processing/cremation)
"ajI" = (
/obj/machinery/door/airlock/security{
- aiControlDisabled = 0;
- icon_state = "closed";
- id_tag = null;
- locked = 0;
+ aiControlDisabled = 1;
name = "Crematorium";
- req_access = null;
- req_access_txt = "2;27";
- req_one_access_txt = "0"
+ req_access_txt = "2;27"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -3562,7 +3543,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plating,
@@ -3989,8 +3969,7 @@
base_state = "left";
dir = 4;
icon_state = "left";
- name = "Brig Infirmary";
- req_access_txt = "0"
+ name = "Brig Infirmary"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
@@ -4232,8 +4211,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Brig Infirmary";
- req_access_txt = "0"
+ name = "Brig Infirmary"
},
/obj/structure/cable{
icon_state = "4-8"
@@ -4544,7 +4522,6 @@
"amI" = (
/obj/machinery/door/airlock/maintenance{
name = "Crematorium Maintenance";
- req_access_txt = "0";
req_one_access_txt = "2;27"
},
/obj/structure/cable{
@@ -4863,8 +4840,7 @@
"anx" = (
/obj/machinery/door/airlock/maintenance{
name = "Brig Infirmary Maintenance";
- req_access_txt = "63";
- req_one_access_txt = "0"
+ req_access_txt = "63"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -5456,8 +5432,7 @@
id = "Secure Gate";
name = "Entrance Lockdown";
pixel_x = 5;
- pixel_y = -2;
- req_access_txt = "0"
+ pixel_y = -2
},
/obj/machinery/button/door{
id = "Prison Gate";
@@ -5577,7 +5552,6 @@
},
/obj/machinery/door/airlock/security{
name = "Security Access";
- req_access = null;
req_access_txt = "1"
},
/turf/open/floor/plating,
@@ -5855,7 +5829,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Security Office";
- req_access = null;
req_access_txt = "1"
},
/obj/structure/disposalpipe/segment,
@@ -6100,9 +6073,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/red/side{
@@ -6444,7 +6415,6 @@
"aru" = (
/obj/machinery/door/airlock/security{
name = "Interrogation";
- req_access = null;
req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -7447,7 +7417,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
- req_access = null;
req_access_txt = "20"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -7515,7 +7484,7 @@
},
/area/bridge)
"atU" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
@@ -7546,7 +7515,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Bridge External Access";
- req_access = null;
req_access_txt = "10;13"
},
/turf/open/floor/plating,
@@ -7960,8 +7928,6 @@
"ava" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
- lockdownbyai = 0;
- locked = 0;
name = "Gateway Access";
req_access_txt = "62"
},
@@ -7998,8 +7964,7 @@
/obj/machinery/button/door{
id = "Dorm3Shutters";
name = "Privacy Shutters Control";
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
@@ -8024,7 +7989,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -8277,7 +8241,6 @@
"avM" = (
/obj/machinery/door/airlock/command{
name = "Balcony";
- req_access = null;
req_access_txt = "20"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -8404,7 +8367,6 @@
},
/obj/machinery/door/airlock/external{
name = "Bridge External Access";
- req_access = null;
req_access_txt = "10;13"
},
/turf/open/floor/plating,
@@ -8676,8 +8638,7 @@
"awH" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "0"
+ name = "Labor Camp Shuttle Airlock"
},
/turf/open/floor/plasteel/dark,
/area/security/brig)
@@ -8828,8 +8789,7 @@
/area/crew_quarters/heads/captain)
"awS" = (
/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
+ name = "Private Restroom"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
@@ -8841,7 +8801,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
name = "Captain's Office Access";
- req_access = null;
req_access_txt = "20"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -9251,7 +9210,6 @@
"aye" = (
/obj/machinery/door/airlock/command{
name = "External Access";
- req_access_txt = "0";
req_one_access_txt = "19; 65"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9299,8 +9257,7 @@
/obj/machinery/button/door{
id = "Dorm2Shutters";
name = "Privacy Shutters Control";
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
@@ -9325,7 +9282,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -9537,7 +9493,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"ayQ" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"ayR" = (
@@ -9571,7 +9527,6 @@
"ayW" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9952,7 +9907,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -9972,7 +9926,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -10261,7 +10214,6 @@
"aAC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
- locked = 0;
name = "AI Upload Access";
req_access_txt = "16"
},
@@ -10444,7 +10396,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -10719,8 +10670,7 @@
/obj/machinery/button/door{
id = "Dorm1Shutters";
name = "Privacy Shutters Control";
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/dorms)
@@ -10745,7 +10695,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -10973,6 +10922,7 @@
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
+/obj/item/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
@@ -11040,12 +10990,25 @@
},
/area/storage/primary)
"aCx" = (
-/obj/machinery/vending/tool,
/obj/structure/sign/poster/official/obey{
pixel_y = 32
},
+/obj/machinery/disposal/deliveryChute{
+ name = "Crate Disposal Chute"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/southright{
+ name = "Crate Disposal Chute"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/neutral/side{
- dir = 5
+ dir = 1
},
/area/storage/primary)
"aCy" = (
@@ -11251,7 +11214,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/cable{
@@ -11573,7 +11535,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable{
@@ -11672,7 +11633,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/cable{
@@ -11799,8 +11759,7 @@
"aEc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
+ name = "Dormitories"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
@@ -11810,8 +11769,7 @@
/area/crew_quarters/toilet/restrooms)
"aEe" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
@@ -11936,6 +11894,10 @@
/obj/machinery/light{
dir = 8
},
+/obj/machinery/light_switch{
+ dir = 9;
+ pixel_x = -22
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
@@ -12224,6 +12186,11 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
+"aEY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
"aEZ" = (
/obj/structure/sink{
dir = 8;
@@ -12422,8 +12389,7 @@
/obj/machinery/door/window/northleft{
dir = 2;
icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/machinery/door/poddoor/preopen{
id = "hop";
@@ -12499,8 +12465,7 @@
/area/crew_quarters/toilet/restrooms)
"aFK" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/structure/cable{
icon_state = "4-8"
@@ -12679,13 +12644,12 @@
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
"aGj" = (
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
- },
+/obj/structure/disposalpipe/junction/flip,
+/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
"aGk" = (
/obj/machinery/vending/boozeomat{
+ products = list(/obj/item/reagent_containers/food/drinks/bottle/rum = 1, /obj/item/reagent_containers/food/drinks/bottle/wine = 1, /obj/item/reagent_containers/food/drinks/ale = 1, /obj/item/reagent_containers/food/drinks/drinkingglass = 6, /obj/item/reagent_containers/food/drinks/ice = 1, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass = 4);
req_access_txt = "20"
},
/turf/open/floor/plasteel/vault{
@@ -12926,11 +12890,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"aGX" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -12947,22 +12906,10 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"aGZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Primary Tool Storage"
- },
+/obj/effect/spawner/structure/window,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/storage/primary)
-"aHa" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- pixel_y = 3
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/hallway/primary/central)
"aHb" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/vault{
@@ -13090,8 +13037,7 @@
/area/hallway/primary/central)
"aHn" = (
/obj/machinery/door/airlock/abandoned{
- name = "Starboard Emergency Storage";
- req_access_txt = "0"
+ name = "Starboard Emergency Storage"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -13235,9 +13181,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/neutral/corner{
@@ -13263,6 +13207,9 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
@@ -13280,12 +13227,12 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHO" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHP" = (
@@ -13402,9 +13349,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/blue/corner{
@@ -13920,8 +13865,7 @@
/area/hallway/primary/central)
"aJn" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable{
icon_state = "4-8"
@@ -14485,8 +14429,7 @@
"aKR" = (
/obj/machinery/door/airlock{
id_tag = "Potty1";
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -14737,7 +14680,6 @@
normaldoorcontrol = 1;
pixel_x = 25;
pixel_y = 4;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -16444,7 +16386,7 @@
/area/storage/eva)
"aPM" = (
/obj/structure/table,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/darkblue/side{
dir = 10
@@ -17455,7 +17397,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/mining/glass{
name = "Mailroom";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/door/firedoor,
@@ -18301,8 +18242,7 @@
"aUg" = (
/obj/machinery/door/airlock/maintenance{
name = "Bar Maintenance";
- req_access_txt = "25";
- req_one_access_txt = "0"
+ req_access_txt = "25"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
@@ -18361,7 +18301,6 @@
"aUo" = (
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "31;48"
},
/obj/structure/disposalpipe/segment{
@@ -19921,7 +19860,6 @@
"aYd" = (
/obj/machinery/door/airlock{
name = "Kitchen";
- req_access_txt = "0";
req_one_access_txt = "25; 28"
},
/obj/structure/disposalpipe/segment,
@@ -20255,9 +20193,7 @@
/area/hydroponics)
"aYR" = (
/obj/machinery/vending/dinnerware,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/cafeteria,
@@ -20653,7 +20589,6 @@
"aZK" = (
/obj/machinery/door/airlock/security{
name = "Security Checkpoint";
- req_access = null;
req_access_txt = "1"
},
/obj/structure/cable{
@@ -21847,7 +21782,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -21867,7 +21801,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -22954,7 +22887,6 @@
"bfI" = (
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -23963,8 +23895,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -24440,8 +24371,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/turf/open/floor/plasteel/freezer,
/area/storage/emergency/port)
@@ -24466,9 +24396,7 @@
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay/zone3)
"bjS" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/dark,
@@ -24714,8 +24642,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/turf/open/floor/plasteel,
/area/science/robotics/lab)
@@ -25240,7 +25167,7 @@
/area/science/server)
"blP" = (
/obj/effect/landmark/event_spawn,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/light{
dir = 8
},
@@ -25381,7 +25308,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Genetics Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;45;5;9"
},
/turf/open/floor/plating,
@@ -25811,7 +25737,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"bnq" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
@@ -25850,9 +25776,7 @@
"bnw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Cloning";
- req_access_txt = "0";
req_one_access_txt = "5;9"
},
/obj/structure/cable{
@@ -25990,7 +25914,7 @@
/turf/open/floor/plasteel,
/area/science/research/lobby)
"bnO" = (
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/obj/machinery/light{
dir = 8
},
@@ -26612,6 +26536,12 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"bpp" = (
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"bpq" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -27404,7 +27334,6 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "GeneticsDoor";
name = "Cloning";
- req_access_txt = "0";
req_one_access_txt = "5;9"
},
/obj/structure/cable{
@@ -27621,9 +27550,8 @@
/area/science/lab)
"brv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/purple/side{
@@ -27988,7 +27916,6 @@
/area/science/xenobiology)
"bsf" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12; 55"
},
/obj/structure/cable{
@@ -28043,9 +27970,8 @@
c_tag = "Genetics Cloning";
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/blue,
@@ -28387,7 +28313,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable{
@@ -28634,9 +28559,7 @@
dir = 4
},
/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ name = "Port Docking Bay 2"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -28645,9 +28568,7 @@
dir = 8
},
/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ name = "Port Docking Bay 2"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -28903,7 +28824,7 @@
/area/science/lab)
"bur" = (
/obj/effect/turf_decal/delivery,
-/obj/machinery/rnd/protolathe/department/science,
+/obj/machinery/rnd/production/protolathe/department/science,
/turf/open/floor/plasteel,
/area/science/lab)
"bus" = (
@@ -28951,8 +28872,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/research{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/effect/turf_decal/delivery,
/obj/machinery/door/firedoor,
@@ -29202,9 +29122,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
/obj/structure/cable{
icon_state = "1-8"
},
@@ -29212,6 +29129,9 @@
dir = 4
},
/obj/effect/landmark/blobstart,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
/turf/open/floor/plasteel/floorgrime,
/area/science/xenobiology)
"buV" = (
@@ -29347,7 +29267,6 @@
/area/medical/medbay/central)
"bvq" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
@@ -29426,7 +29345,7 @@
"bvy" = (
/obj/item/reagent_containers/glass/beaker/sulphuric,
/obj/effect/turf_decal/delivery,
-/obj/machinery/rnd/circuit_imprinter/department/science,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
/turf/open/floor/plasteel,
/area/science/lab)
"bvz" = (
@@ -29818,6 +29737,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/floorgrime,
/area/science/xenobiology)
"bwm" = (
@@ -30227,7 +30147,6 @@
},
/obj/machinery/door/airlock/research{
name = "R&D Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29;30"
},
/obj/effect/turf_decal/delivery,
@@ -30491,8 +30410,7 @@
idDoor = "xeno_airlock_exterior";
idSelf = "xeno_airlock_control";
name = "Access Button";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -30532,8 +30450,7 @@
idDoor = "xeno_airlock_interior";
idSelf = "xeno_airlock_control";
name = "Access Button";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -30724,7 +30641,6 @@
/area/science/xenobiology)
"bxW" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12; 55"
},
/obj/structure/cable{
@@ -30734,6 +30650,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bxX" = (
@@ -30888,7 +30805,6 @@
/area/medical/sleeper)
"byp" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Sleepers";
req_access_txt = "5"
},
@@ -30900,7 +30816,6 @@
/area/medical/sleeper)
"byq" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Sleepers";
req_access_txt = "5"
},
@@ -31494,6 +31409,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bzx" = (
@@ -31503,6 +31421,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bzy" = (
@@ -31896,8 +31817,7 @@
},
/obj/machinery/door/airlock/research{
name = "Research Director's Office";
- req_access_txt = "30";
- req_one_access_txt = "0"
+ req_access_txt = "30"
},
/turf/open/floor/plasteel/darkpurple/side{
dir = 1
@@ -33241,9 +33161,8 @@
},
/area/hallway/primary/aft)
"bDB" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/computer/rdconsole{
@@ -33466,8 +33385,8 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
@@ -33508,22 +33427,17 @@
dir = 5
},
/area/science/mixing)
-"bEe" = (
-/turf/closed/wall,
-/area/science/mineral_storeroom)
"bEf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/science/mineral_storeroom)
-"bEg" = (
-/turf/closed/wall/r_wall,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bEh" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/item/trash/sosjerky,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bEj" = (
@@ -33628,7 +33542,7 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -26
},
-/obj/machinery/rnd/protolathe/department/medical,
+/obj/machinery/rnd/production/techfab/department/medical,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
@@ -33793,7 +33707,8 @@
dir = 1
},
/obj/machinery/vending/wallmed{
- pixel_y = 28
+ pixel_y = 28;
+ products = list(/obj/item/reagent_containers/syringe = 3, /obj/item/reagent_containers/pill/patch/styptic = 1, /obj/item/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/reagent_containers/medspray/sterilizine = 1)
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/landmark/blobstart,
@@ -33811,7 +33726,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = 26;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -34090,6 +34004,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bFn" = (
@@ -34136,14 +34051,22 @@
},
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bFs" = (
/obj/structure/cable{
icon_state = "4-8"
},
/obj/structure/closet/firecloset,
+/obj/machinery/camera{
+ c_tag = "Toxins Launch Area";
+ dir = 2;
+ network = list("ss13","rd")
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bFt" = (
/obj/machinery/suit_storage_unit/rd,
/obj/structure/cable{
@@ -34152,46 +34075,44 @@
/obj/machinery/light{
dir = 1
},
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bFu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bFu" = (
-/obj/structure/ore_box,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bFv" = (
-/obj/structure/ore_box,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Toxins Launch Area";
- dir = 2;
- network = list("ss13","rd")
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall,
+/area/science/mixing)
"bFw" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/sign/warning/deathsposal{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/science/circuit)
"bFx" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -34202,21 +34123,23 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bFy" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ dir = 2;
+ name = "Science Requests Console";
+ pixel_y = 30;
+ receive_ore_updates = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bFz" = (
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
+"bFy" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Toxins Launch Room APC";
+ name = "Circuitry Lab APC";
pixel_y = 25
},
/obj/structure/cable{
@@ -34225,34 +34148,58 @@
/obj/structure/cable{
icon_state = "0-8"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
+"bFz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bFA" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Toxins Launch Room Maintenance";
- req_access_txt = "8"
+/obj/structure/cable{
+ icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
+"bFA" = (
/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
+/obj/machinery/door/airlock/research{
+ name = "Circuitry Storeroom";
+ req_access_txt = "47"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
"bFB" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/item/cigbutt/cigarbutt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
"bFC" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -34263,8 +34210,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
"bFD" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -34272,7 +34222,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/landmark/xeno_spawn,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "47"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bFE" = (
@@ -34390,7 +34348,6 @@
/area/medical/medbay/central)
"bFR" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -34628,6 +34585,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side,
/area/science/mixing)
"bGt" = (
@@ -34673,28 +34631,36 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bGy" = (
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bGz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bGA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bGB" = (
-/obj/effect/turf_decal/loading_area{
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bGC" = (
-/obj/effect/turf_decal/delivery,
+/area/science/mixing)
+"bGz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
+"bGA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bGB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bGC" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/science/circuit)
"bGD" = (
/obj/structure/window/reinforced{
dir = 4
@@ -34846,7 +34812,6 @@
dir = 4
},
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -35092,7 +35057,6 @@
id = "toxvent";
name = "Aft Vent Control";
pixel_y = -24;
- req_access_txt = "0";
req_one_access_txt = "8;24"
},
/obj/effect/turf_decal/stripes/line{
@@ -35109,14 +35073,16 @@
pixel_x = -6;
pixel_y = -24
},
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "tox_airlock_exterior";
- idInterior = "tox_airlock_interior";
- idSelf = "tox_access_control";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Mixing Chamber Access Console";
+ airpump_tag = "tox_airlock_pump";
+ exterior_door_tag = "tox_airlock_exterior";
+ id_tag = "tox_airlock_control";
+ interior_door_tag = "tox_airlock_interior";
pixel_x = 6;
pixel_y = -26;
- req_access_txt = "0"
+ sanitize_external = 1;
+ sensor_tag = "tox_airlock_sensor"
},
/obj/structure/extinguisher_cabinet{
pixel_x = 24
@@ -35131,58 +35097,45 @@
"bHB" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
- name = "Incinerator Output Pump";
- on = 0
+ name = "Incinerator Output Pump"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -20
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bHC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bHD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bHE" = (
/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bHF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bHG" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 28
- },
-/turf/open/floor/plasteel/brown{
+/turf/open/floor/plasteel/purple/corner{
dir = 4
},
-/area/science/mineral_storeroom)
-"bHH" = (
-/obj/machinery/mineral/unloading_machine{
- dir = 1;
- icon_state = "unloader-corner";
- input_dir = 1;
- output_dir = 2
+/area/science/circuit)
+"bHG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
"bHI" = (
/obj/structure/grille/broken,
/turf/open/space/basic,
@@ -35453,7 +35406,8 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/vending/wallmed{
- pixel_y = 28
+ pixel_y = 28;
+ products = list(/obj/item/reagent_containers/syringe = 3, /obj/item/reagent_containers/pill/patch/styptic = 1, /obj/item/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/reagent_containers/medspray/sterilizine = 1)
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
@@ -35630,8 +35584,7 @@
heat_proof = 1;
id_tag = "tox_airlock_interior";
name = "Interior Airlock";
- req_access_txt = "8";
- req_one_access_txt = "0"
+ req_access_txt = "8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/engine,
@@ -35642,8 +35595,12 @@
/area/science/mixing)
"bIN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bIO" = (
/obj/structure/window/reinforced,
/obj/machinery/doppler_array/research/science{
@@ -35655,34 +35612,35 @@
/turf/open/floor/plasteel{
dir = 2
},
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bIP" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "toxmineral";
- name = "smelting conveyor"
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bIQ" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bIR" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "toxmineral"
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"bIS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
},
/obj/effect/turf_decal/stripes/line{
- dir = 8
+ dir = 10
},
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bIS" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bIT" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -35846,9 +35804,7 @@
/area/medical/medbay/central)
"bJq" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Room";
- req_access_txt = "0"
+ name = "Recovery Room"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -36069,43 +36025,41 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bJQ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- on = 1;
- target_pressure = 101.325
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "tox_airlock_exterior";
- idSelf = "tox_access_control";
- layer = 3.1;
- name = "airlock control";
- pixel_x = 8;
- pixel_y = -24
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 2
},
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/airlock_sensor{
+ id_tag = "tox_airlock_sensor";
+ master_tag = "tox_airlock_control";
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/science/mixing)
"bJR" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 4;
+ frequency = 1449;
+ id = "tox_airlock_pump"
+ },
/turf/open/floor/engine,
/area/science/mixing)
"bJS" = (
/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- on = 0;
- target_pressure = 101.325
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "tox_airlock_interior";
- idSelf = "tox_access_control";
- name = "airlock control";
- pixel_x = -8;
- pixel_y = 24
+ dir = 1
},
/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/science/mixing)
"bJT" = (
@@ -36118,7 +36072,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bJU" = (
/obj/machinery/button/massdriver{
dir = 2;
@@ -36129,7 +36083,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bJV" = (
/obj/machinery/mass_driver{
id = "toxinsdriver"
@@ -36146,29 +36100,28 @@
dir = 1
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bJW" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
},
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bJX" = (
-/obj/machinery/mineral/processing_unit_console,
-/turf/closed/wall,
-/area/science/mineral_storeroom)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bJY" = (
-/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/effect/turf_decal/stripes/line{
- dir = 9
+ dir = 4
},
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bJZ" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -36330,7 +36283,8 @@
/area/medical/medbay/central)
"bKw" = (
/obj/machinery/vending/wallmed{
- pixel_y = 28
+ pixel_y = 28;
+ products = list(/obj/item/reagent_containers/syringe = 3, /obj/item/reagent_containers/pill/patch/styptic = 1, /obj/item/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/reagent_containers/medspray/sterilizine = 1)
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
@@ -36370,7 +36324,7 @@
dir = 4
},
/obj/effect/landmark/event_spawn,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bKA" = (
@@ -36457,14 +36411,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/hallway/primary/aft)
-"bKN" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "prison release";
- name = "prisoner processing blast door"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
"bKO" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/door/poddoor/preopen{
@@ -36639,8 +36585,7 @@
heat_proof = 1;
id_tag = "tox_airlock_exterior";
name = "Exterior Airlock";
- req_access_txt = "8";
- req_one_access_txt = "0"
+ req_access_txt = "8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -36651,11 +36596,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
- req_access_txt = "8";
- req_one_access_txt = "0"
+ req_access_txt = "8"
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bLh" = (
/obj/structure/window/reinforced{
dir = 8;
@@ -36671,49 +36615,38 @@
dir = 8
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bLi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/turf/closed/wall,
-/area/science/mineral_storeroom)
+/turf/closed/wall/r_wall,
+/area/science/mixing)
"bLj" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/obj/item/storage/bag/ore,
-/obj/item/storage/bag/ore,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bLk" = (
-/obj/effect/turf_decal/loading_area{
+/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/circuit)
+"bLk" = (
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor5"
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bLl" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "toxmineral"
- },
-/obj/structure/plasticflaps,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bLm" = (
-/obj/machinery/conveyor{
- dir = 10;
- id = "toxmineral"
- },
-/obj/machinery/light/small,
-/obj/effect/turf_decal/stripes/corner{
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bLn" = (
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
@@ -37136,14 +37069,14 @@
pixel_x = -32
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bMp" = (
/obj/structure/closet/emcloset/anchored,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bMq" = (
/obj/machinery/door/poddoor{
id = "toxinsdriver";
@@ -37154,7 +37087,7 @@
},
/obj/structure/fans/tiny,
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bMr" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -37522,7 +37455,7 @@
"bNq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bNr" = (
/obj/structure/window/reinforced{
dir = 4
@@ -37933,11 +37866,10 @@
dir = 1
},
/obj/machinery/door/airlock/external{
- req_access_txt = "8";
- req_one_access_txt = "0"
+ req_access_txt = "8"
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bOv" = (
/obj/structure/window/reinforced{
dir = 4
@@ -39635,7 +39567,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/dark,
/area/storage/tech)
"bSG" = (
@@ -39751,7 +39683,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bSS" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bST" = (
@@ -40024,11 +39956,11 @@
pixel_y = 4
},
/obj/item/device/multitool,
-/obj/item/clothing/glasses/meson,
/obj/machinery/requests_console{
department = "Tech storage";
pixel_y = -32
},
+/obj/item/clothing/glasses/meson/engine,
/turf/open/floor/plasteel/darkgreen,
/area/storage/tech)
"bTB" = (
@@ -40819,10 +40751,7 @@
/area/space/nearstation)
"bVq" = (
/obj/machinery/door/airlock/external{
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Construction Zone"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -41251,9 +41180,7 @@
},
/area/maintenance/department/engine)
"bWn" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
+/obj/structure/closet/secure_closet/engineering_chief,
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
@@ -41833,6 +41760,9 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ dir = 6
+ },
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bXI" = (
@@ -41977,8 +41907,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Power Storage";
- req_access_txt = "11";
- req_one_access_txt = "0"
+ req_access_txt = "11"
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -42071,11 +42000,6 @@
"bYw" = (
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
-"bYx" = (
-/obj/machinery/atmospherics/pipe/simple/purple/visible,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"bYz" = (
/obj/machinery/door/morgue{
name = "Confession Booth"
@@ -42094,10 +42018,7 @@
/area/chapel/main/monastery)
"bYF" = (
/obj/machinery/door/airlock/external{
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Construction Zone"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -42460,14 +42381,16 @@
name = "Incinerator APC";
pixel_x = -24
},
-/obj/structure/cable{
- icon_state = "0-4"
- },
/obj/machinery/airalarm{
dir = 2;
pixel_y = 22
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
/turf/open/floor/plasteel/darkyellow/side{
icon_state = "darkyellow";
dir = 8
@@ -42486,6 +42409,9 @@
/obj/structure/cable/yellow{
icon_state = "0-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"bZh" = (
@@ -42493,20 +42419,24 @@
/obj/structure/cable{
icon_state = "0-8"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/darkyellow/side{
dir = 4
},
/area/maintenance/disposal/incinerator)
"bZi" = (
-/obj/machinery/atmospherics/pipe/simple/purple/visible{
- dir = 6
- },
/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"bZj" = (
-/obj/machinery/atmospherics/pipe/simple/purple/visible{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
},
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
@@ -42704,10 +42634,10 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bZO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/darkyellow/side{
icon_state = "darkyellow";
dir = 8
@@ -42729,7 +42659,6 @@
name = "Outtake Vent Control";
pixel_x = 24;
pixel_y = 6;
- req_access_txt = "0";
req_one_access_txt = "8;24"
},
/obj/machinery/button/door{
@@ -42737,7 +42666,6 @@
name = "Intake Vent Control";
pixel_x = 24;
pixel_y = -6;
- req_access_txt = "0";
req_one_access_txt = "8;24"
},
/turf/open/floor/plasteel/darkyellow/side{
@@ -42751,29 +42679,13 @@
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"bZS" = (
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
- name = "Incinerator airlock control";
- pixel_x = -24;
- pixel_y = -8
- },
/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- on = 0;
- target_pressure = 101.325
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- layer = 3.1;
- name = "Incinerator airlock control";
- pixel_x = 24;
- pixel_y = -8
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"bZT" = (
@@ -43068,13 +42980,18 @@
/obj/structure/cable/yellow{
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"caK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/open/floor/plasteel/darkyellow/side{
dir = 4
},
@@ -43090,8 +43007,7 @@
heat_proof = 1;
id_tag = "incinerator_airlock_interior";
name = "Turbine Interior Airlock";
- req_access_txt = "24";
- req_one_access_txt = "0"
+ req_access_txt = "24"
},
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
@@ -43099,6 +43015,11 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 2;
+ frequency = 1449;
+ id = "incinerator_airlock_pump"
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"caN" = (
@@ -43112,8 +43033,7 @@
heat_proof = 1;
id_tag = "incinerator_airlock_exterior";
name = "Turbine Exterior Airlock";
- req_access_txt = "24";
- req_one_access_txt = "0"
+ req_access_txt = "24"
},
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
@@ -43398,17 +43318,20 @@
name = "Incinerator to Output";
on = 0
},
+/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"cbC" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idInterior = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Incinerator Access Console";
+ airpump_tag = "incinerator_airlock_pump";
+ exterior_door_tag = "incinerator_airlock_exterior";
+ id_tag = "incinerator_access_control";
+ interior_door_tag = "incinerator_airlock_interior";
pixel_x = 26;
pixel_y = 6;
- req_access_txt = "0"
+ sanitize_external = 1;
+ sensor_tag = "incinerator_airlock_sensor"
},
/obj/machinery/button/ignition{
id = "Incinerator";
@@ -43416,7 +43339,9 @@
pixel_y = -6
},
/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
/turf/open/floor/plasteel/darkyellow/side{
dir = 4
},
@@ -43429,11 +43354,16 @@
/area/maintenance/disposal/incinerator)
"cbE" = (
/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- on = 0;
- target_pressure = 101.325
+ dir = 8
},
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/machinery/airlock_sensor{
+ id_tag = "incinerator_airlock_sensor";
+ master_tag = "incinerator_airlock_control";
+ pixel_x = -26;
+ pixel_y = 8
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cbF" = (
@@ -43664,13 +43594,13 @@
/area/maintenance/disposal/incinerator)
"ccq" = (
/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"ccr" = (
-/obj/machinery/atmospherics/components/binary/pump{
+/obj/machinery/atmospherics/components/binary/pump/on{
dir = 2;
- name = "Incinerator Output Pump";
- on = 1
+ name = "Incinerator Output Pump"
},
/turf/open/floor/plasteel/darkyellow/side{
dir = 4
@@ -43849,10 +43779,13 @@
"cdh" = (
/obj/structure/table/glass,
/obj/item/storage/toolbox/emergency,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
/turf/open/floor/plasteel/darkyellow/side,
/area/maintenance/disposal/incinerator)
"cdi" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
/turf/open/floor/plasteel/darkyellow/side{
icon_state = "darkyellow";
dir = 6
@@ -43864,9 +43797,11 @@
},
/obj/machinery/door/airlock/external{
name = "Atmospherics External Access";
- req_access = null;
req_access_txt = "24"
},
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cdk" = (
@@ -43876,6 +43811,9 @@
/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cdl" = (
@@ -43884,7 +43822,6 @@
},
/obj/machinery/door/airlock/external{
name = "Atmospherics External Access";
- req_access = null;
req_access_txt = "24"
},
/turf/open/floor/plating,
@@ -44012,10 +43949,6 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cdM" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cdN" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
@@ -44028,93 +43961,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cdP" = (
-/obj/machinery/camera{
- c_tag = "Engineering Port Aft";
- dir = 1
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdQ" = (
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cdR" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cdS" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- req_access_txt = "11"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdT" = (
-/obj/machinery/particle_accelerator/control_box,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdU" = (
-/obj/structure/particle_accelerator/fuel_chamber,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdV" = (
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdW" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdX" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cdY" = (
-/obj/machinery/camera{
- c_tag = "Engineering Starboard Aft";
- dir = 1
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cdZ" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -44239,19 +44085,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ces" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
"cet" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "Singularity";
@@ -44299,18 +44132,6 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cez" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"ceA" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
@@ -44559,21 +44380,6 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cft" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
"cfu" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -44608,20 +44414,6 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cfz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"cfC" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/hydrofloor,
@@ -44868,7 +44660,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Engineering External Access";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plating,
@@ -44937,7 +44728,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
@@ -45155,7 +44945,6 @@
},
/obj/machinery/door/airlock/external{
name = "Engineering External Access";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plating,
@@ -45169,20 +44958,6 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"chx" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"chz" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"chA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -45405,7 +45180,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
@@ -45440,16 +45214,6 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"cit" = (
-/obj/machinery/the_singularitygen/tesla,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ciu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
"civ" = (
/obj/machinery/light{
dir = 4
@@ -45938,8 +45702,7 @@
},
/obj/machinery/door/window/eastleft{
dir = 8;
- name = "Mass Driver";
- req_one_access_txt = "0"
+ name = "Mass Driver"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/dark,
@@ -46037,7 +45800,7 @@
/turf/closed/mineral/random/low_chance,
/area/asteroid/nearstation/bomb_site)
"ckL" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plating/airless,
/area/asteroid/nearstation/bomb_site)
"ckM" = (
@@ -46215,7 +45978,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Telecommunications External Access";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plating,
@@ -46242,7 +46004,6 @@
},
/obj/machinery/door/airlock/external{
name = "Telecommunications External Access";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plating,
@@ -46316,7 +46077,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"clS" = (
@@ -47057,8 +46818,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
+ name = "Dormitories"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
@@ -47090,10 +46850,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"cov" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side,
-/area/storage/primary)
"cow" = (
/obj/structure/rack,
/obj/item/storage/toolbox/emergency,
@@ -47185,7 +46941,7 @@
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/exit/departure_lounge)
"coT" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"coV" = (
@@ -47339,7 +47095,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
"cpt" = (
-/obj/item/device/radio/beacon,
+/obj/item/device/beacon,
/turf/open/floor/plasteel/vault{
dir = 5
},
@@ -47871,7 +47627,6 @@
/obj/machinery/door/airlock/centcom{
name = "Crematorium";
opacity = 1;
- req_access = null;
req_access_txt = "27"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -47920,9 +47675,7 @@
/turf/open/space/basic,
/area/space/nearstation)
"crS" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/dark,
@@ -48996,7 +48749,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Monastery Maintenance";
- req_access_txt = "0";
req_one_access_txt = "22;24;10;11;37"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -49378,18 +49130,6 @@
dir = 1
},
/area/library/lounge)
-"cyr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 29
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
"cyy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -49828,6 +49568,7 @@
/area/maintenance/department/engine)
"cBk" = (
/obj/machinery/vending/boozeomat{
+ products = list(/obj/item/reagent_containers/food/drinks/bottle/whiskey = 1, /obj/item/reagent_containers/food/drinks/bottle/absinthe = 1, /obj/item/reagent_containers/food/drinks/bottle/limejuice = 1, /obj/item/reagent_containers/food/drinks/bottle/cream = 1, /obj/item/reagent_containers/food/drinks/soda_cans/tonic = 1, /obj/item/reagent_containers/food/drinks/drinkingglass = 10, /obj/item/reagent_containers/food/drinks/ice = 3, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass = 6, /obj/item/reagent_containers/food/drinks/flask = 1);
req_access_txt = "0"
},
/turf/closed/wall,
@@ -49917,8 +49658,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
@@ -49935,8 +49675,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
@@ -49969,7 +49708,6 @@
"cBL" = (
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;45;5;9"
},
/turf/open/floor/plating,
@@ -49983,10 +49721,6 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
-"cBP" = (
-/obj/machinery/smoke_machine,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
"cBQ" = (
/obj/machinery/power/rad_collector,
/turf/open/floor/plating,
@@ -50014,7 +49748,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"cCD" = (
-/obj/machinery/rnd/protolathe/department/service,
+/obj/machinery/rnd/production/techfab/department/service,
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
"cCF" = (
@@ -50063,19 +49797,19 @@
/turf/open/floor/plating/airless,
/area/maintenance/department/chapel/monastery)
"cCS" = (
-/obj/machinery/rnd/protolathe/department/security,
+/obj/machinery/rnd/production/techfab/department/security,
/turf/open/floor/plasteel/dark,
/area/security/main)
"cCT" = (
-/obj/machinery/rnd/protolathe/department/cargo,
+/obj/machinery/rnd/production/techfab/department/cargo,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"cCU" = (
-/obj/machinery/rnd/circuit_imprinter,
+/obj/machinery/rnd/production/circuit_imprinter,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cCV" = (
-/obj/machinery/rnd/protolathe/department/engineering,
+/obj/machinery/rnd/production/protolathe/department/engineering,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cCW" = (
@@ -50113,45 +49847,73 @@
"cDa" = (
/turf/closed/wall,
/area/quartermaster/warehouse)
-"dTw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"dgh" = (
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "1-2"
},
-/turf/open/floor/carpet,
-/area/library)
-"ecV" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"eHp" = (
-/turf/closed/wall,
-/area/crew_quarters/cryopod)
-"eIE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
},
-/turf/open/floor/plasteel/dark,
-/area/library/lounge)
-"eJt" = (
-/obj/machinery/computer/cryopod{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
-"fic" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
-"fki" = (
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dse" = (
/obj/structure/disposalpipe/segment{
dir = 6
},
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
-"frt" = (
+"dAF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"dCo" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Port Aft";
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"dMB" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"dMI" = (
+/obj/item/twohanded/required/kirbyplants/random,
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab";
+ dir = 1;
+ network = list("ss13","rd");
+ pixel_x = 10
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"dNt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/xeno_spawn,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
+"dWy" = (
+/obj/machinery/libraryscanner,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"eeQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50161,27 +49923,144 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"fyh" = (
+"ejp" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_circuit_printer,
+/obj/item/device/integrated_electronics/wirer,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"fvG" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 6
+ },
+/area/science/circuit)
+"fwl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"fwr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"fBm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/research{
+ name = "Circuitry Lab";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"fKj" = (
+/turf/closed/wall,
+/area/science/circuit)
+"fWv" = (
+/obj/structure/bookcase/random/religion,
+/turf/open/floor/plasteel/dark,
+/area/library/lounge)
+"gkR" = (
+/obj/item/twohanded/required/kirbyplants/random,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/storage/primary)
+"gtb" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/science/circuit)
+"gxK" = (
+/turf/closed/wall/r_wall,
+/area/science/circuit)
+"gAj" = (
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/circuit)
+"gDh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"gMm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"gQJ" = (
+/obj/machinery/cryopod,
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"hmE" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Starboard Aft";
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"htU" = (
+/obj/machinery/rnd/production/protolathe/department/science,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"hFp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"hKA" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/integrated_electronics/debugger,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"hKR" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"hTZ" = (
+/obj/machinery/the_singularitygen/tesla,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ick" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/library)
+"ijF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/carpet,
/area/library)
-"fID" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"izp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
"izB" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod"
@@ -50191,22 +50070,34 @@
},
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"iCc" = (
+"izF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/red,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"iIy" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"iKb" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/sorting)
-"iVb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"iXQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
"jgr" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
@@ -50218,24 +50109,91 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/dark,
/area/library)
-"jZg" = (
-/obj/machinery/cryopod,
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
-"kdc" = (
+"jvi" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/crew_quarters/heads/hos)
+"jBh" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"jBK" = (
+/obj/machinery/particle_accelerator/control_box,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"jFO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/library/lounge)
+"jLW" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"jOJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"jXh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/library/lounge)
+"jXA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 8
+ },
+/area/science/circuit)
+"jYe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"kbq" = (
/obj/machinery/cryopod,
/obj/machinery/light/small/built{
dir = 4
},
/turf/open/floor/plasteel/darkpurple,
/area/crew_quarters/cryopod)
-"khx" = (
-/obj/structure/cable{
- icon_state = "1-2"
+"khk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/stairs,
-/area/crew_quarters/cryopod)
+/turf/open/floor/plasteel,
+/area/science/mixing)
"kjK" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
@@ -50249,24 +50207,44 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"kqj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+"kmh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
},
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"kwI" = (
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"kAz" = (
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"kUC" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"lju" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 8
+ },
+/area/science/circuit)
+"lpS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"krG" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/library)
-"let" = (
-/turf/closed/wall/r_wall,
-/area/space)
+/area/science/circuit)
"lqy" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
@@ -50276,71 +50254,160 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/dark,
/area/library/lounge)
-"lvl" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/cigbutt,
+"lAs" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"lJr" = (
+/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"mHo" = (
+/area/science/circuit)
+"lQn" = (
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"lQQ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridgespace";
+ name = "bridge external shutters"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/bridge)
+"lVr" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"mdL" = (
/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/lab)
+"mtp" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ req_access_txt = "11"
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 27
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"mLe" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel/darkred/side{
- dir = 1
- },
-/area/crew_quarters/heads/hos)
-"nuB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/library/lounge)
-"nJY" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"opC" = (
-/obj/machinery/light/small{
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "Library APC";
- pixel_x = 24
+/turf/open/floor/plating,
+/area/engine/engineering)
+"mCe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
},
-/obj/structure/cable,
-/turf/open/floor/plasteel/dark,
-/area/library)
-"oJF" = (
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"mES" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"mKc" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/plasteel/dark,
/area/library/lounge)
+"mPt" = (
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab Storeroom";
+ dir = 1;
+ network = list("ss13","rd");
+ pixel_x = 10
+ },
+/obj/structure/rack,
+/obj/item/device/multitool,
+/obj/item/device/multitool,
+/obj/item/screwdriver,
+/obj/item/screwdriver,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"neo" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"not" = (
+/obj/item/cigbutt,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"nwu" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/science/circuit)
+"nSU" = (
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"onw" = (
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/circuit)
+"onX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Primary Tool Storage"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"opm" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"oyF" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"oEG" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"oJT" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/red,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"oMg" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
"oPy" = (
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -50360,7 +50427,95 @@
"pps" = (
/turf/closed/wall,
/area/engine/break_room)
-"qWK" = (
+"ptq" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_electronics/analyzer,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"pWF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{
+ pixel_y = 32
+ },
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"pXc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/carpet,
+/area/library)
+"qnT" = (
+/obj/machinery/autolathe,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"qAM" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"qDU" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = 20;
+ pixel_y = -6
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/circuit)
+"qKm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 10
+ },
+/area/science/circuit)
+"qOE" = (
+/turf/open/floor/plasteel/dark,
+/area/library/lounge)
+"qXl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"qXH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"raF" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -50372,10 +50527,61 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"sHK" = (
-/obj/structure/bookcase/random/religion,
-/turf/open/floor/plasteel/dark,
-/area/library/lounge)
+"rtE" = (
+/turf/open/floor/plasteel/purple/corner{
+ dir = 1
+ },
+/area/science/circuit)
+"rxQ" = (
+/obj/structure/target_stake,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"rxV" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 27
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"rBh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"sBA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"sCz" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/red,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"sQr" = (
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
"sQt" = (
/obj/machinery/door/airlock/external{
name = "Supply Dock Airlock";
@@ -50386,60 +50592,127 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"tap" = (
-/obj/machinery/power/apc{
- areastring = "/area/medical/cryo";
- dir = 1;
- name = "Cryogenics APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/darkpurple,
+"sQF" = (
+/turf/closed/wall,
/area/crew_quarters/cryopod)
-"tez" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/library/lounge)
-"tjW" = (
-/obj/machinery/light{
- dir = 8
+"thA" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"tiV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/cryopod{
- tag = "icon-cryopod-open (EAST)";
- icon_state = "cryopod-open";
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"twE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"tLB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/stairs,
+/area/crew_quarters/cryopod)
+"tYg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/turf/open/floor/plasteel/dark,
-/area/security/prison)
-"ufi" = (
-/turf/open/floor/plasteel/dark,
-/area/library/lounge)
-"urZ" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"tYI" = (
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"uek" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/dark,
-/area/library)
-"uyt" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_electronics/analyzer,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"uic" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/cable{
- icon_state = "1-8"
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"uPm" = (
-/obj/machinery/computer/camera_advanced/xenobio{
+"ulu" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/storage/primary)
+"uoj" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the other eggheads from the comfort of the circuitry lab.";
+ dir = 2;
+ name = "RnD Monitor";
+ network = list("rd");
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"uyY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"vpU" = (
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
+/area/science/circuit)
+"uIi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"vpz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the other eggheads from the comfort of the circuitry lab.";
+ dir = 2;
+ name = "RnD Monitor";
+ network = list("rd");
+ pixel_y = 32
+ },
+/obj/item/device/integrated_circuit_printer,
+/obj/item/device/integrated_electronics/debugger,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
"vzz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -50450,6 +50723,27 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
+"vEy" = (
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"vJd" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_electronics/wirer,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vMX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -20
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"vOw" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
@@ -50464,32 +50758,159 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/dark,
/area/library)
-"vTA" = (
-/obj/machinery/door/poddoor/preopen{
- id = "bridgespace";
- name = "bridge external shutters"
+"vTL" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
},
-/turf/open/floor/plasteel/vault{
+/area/storage/primary)
+"wgx" = (
+/obj/structure/particle_accelerator/fuel_chamber,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"wtT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"wxJ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "prison release";
+ name = "prisoner processing blast door"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"wBr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"wDZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"wJP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ dir = 9
+ },
+/turf/open/space,
+/area/space/nearstation)
+"wTO" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/science/circuit)
+"xfc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"xhj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/library/lounge)
+"xhx" = (
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"xja" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Library APC";
+ pixel_x = 24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/dark,
+/area/library)
+"xjc" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/library)
+"xGQ" = (
+/obj/structure/closet/crate,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"xOF" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/area/bridge)
-"xzr" = (
-/turf/closed/wall,
-/area/quartermaster/sorting)
-"yhZ" = (
-/obj/structure/table,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/lab)
-"yia" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
+/turf/open/floor/plating,
+/area/engine/engineering)
+"xSE" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"yac" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/cryopod";
+ dir = 1;
+ name = "Crew Cryogenics APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"yeS" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/blue,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"ygO" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
(1,1,1) = {"
aaa
@@ -68155,13 +68576,13 @@ cgG
cfn
ckE
ckT
-tez
-tez
+xhj
+xhj
cwK
-tez
-tez
+xhj
+xhj
cxn
-tez
+xhj
lqy
cxC
cxK
@@ -68413,12 +68834,12 @@ cvw
cvK
cwg
cjR
-nuB
+jFO
ckF
-nuB
+jFO
cxe
-nuB
-nuB
+jFO
+jFO
cxz
cxD
cxL
@@ -68426,8 +68847,8 @@ cxY
cym
cyA
vOw
-fyh
-dTw
+ijF
+pXc
ckm
ckm
ckm
@@ -68673,7 +69094,7 @@ cwr
clm
ckG
cwU
-eIE
+jXh
ckU
cwe
cwe
@@ -68684,7 +69105,7 @@ cxM
cyB
cjp
cyR
-urZ
+ick
ckH
ckH
ckH
@@ -68927,10 +69348,10 @@ cvy
cvL
cwe
cwe
-sHK
-ufi
+fWv
+qOE
ckV
-ufi
+qOE
cln
cwe
cfN
@@ -68941,7 +69362,7 @@ aaa
aaa
cjp
cyS
-urZ
+ick
cyZ
ckH
czo
@@ -69184,10 +69605,10 @@ cvc
cvM
cfm
cwe
-sHK
-ufi
-oJF
-ufi
+fWv
+qOE
+mKc
+qOE
cln
cwe
caS
@@ -69198,7 +69619,7 @@ aht
aht
cjp
cko
-urZ
+ick
ckH
ckH
clp
@@ -69455,7 +69876,7 @@ aaa
aaa
cjp
cyT
-urZ
+ick
cyZ
ckH
czp
@@ -69712,8 +70133,8 @@ aht
aht
cjp
cjp
-krG
-opC
+xjc
+xja
ckH
czq
czw
@@ -70084,7 +70505,7 @@ aem
aem
aeT
afn
-tjW
+aem
afZ
agn
agy
@@ -70619,7 +71040,7 @@ aok
aoO
apF
apE
-bKN
+wxJ
apE
bBW
ajM
@@ -73959,7 +74380,7 @@ anJ
amX
aoY
apN
-cyr
+sBA
arp
asB
atB
@@ -74746,7 +75167,7 @@ aDv
aBh
aBh
aGd
-aGW
+aEY
aHG
aIM
aJG
@@ -76545,7 +76966,7 @@ aDA
aDy
aDA
aGi
-aGX
+aBi
aHL
aIP
aJK
@@ -76797,11 +77218,11 @@ axO
ayT
aAq
aBj
-aCs
+vTL
aDA
aEv
aFu
-cov
+aFu
aGZ
aHM
aIQ
@@ -77055,12 +77476,12 @@ ayU
aAr
aBj
aCx
-aDB
-aEw
-aFv
+oyF
+oyF
+oyF
aGj
-aGX
-aHH
+onX
+qXH
aIO
aJI
aKP
@@ -77296,7 +77717,7 @@ akW
alK
amw
ani
-mLe
+jvi
aiR
aph
ajM
@@ -77311,13 +77732,13 @@ axQ
ayV
aAs
aBj
-aBj
-aBj
-aBj
-aBj
-aBj
-aBi
-aHN
+gkR
+aDB
+aEw
+aFv
+ulu
+aGX
+jYe
aIO
aJI
aKQ
@@ -77573,8 +77994,8 @@ awR
awR
awR
awR
-aHa
-aHN
+aAN
+jYe
aIO
aJM
aKQ
@@ -77831,7 +78252,7 @@ aEx
aFw
awR
aHb
-aHN
+jYe
aIQ
aJL
aKR
@@ -79188,7 +79609,7 @@ cah
cbd
cam
cam
-cdM
+lVr
bXk
bXk
bXk
@@ -79206,7 +79627,7 @@ bXk
bXk
bXk
bXk
-let
+aaa
aaa
aaa
aaa
@@ -79463,7 +79884,7 @@ cjT
ckq
ckq
bXk
-let
+aaa
aaa
aaa
aaa
@@ -79703,9 +80124,9 @@ cbf
ccb
ccS
cdO
-ces
+tiV
ceX
-cft
+twE
cfS
cfV
cgS
@@ -79720,7 +80141,7 @@ cgS
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -79903,7 +80324,7 @@ aRN
aWa
aRN
aRN
-mHo
+rxV
aYS
cpn
bch
@@ -79959,7 +80380,7 @@ cak
cbg
cca
cam
-cdP
+dCo
bXk
bTE
bXk
@@ -79977,7 +80398,7 @@ cgT
cfV
ckr
bXk
-let
+aaa
aaa
aaa
aaa
@@ -80216,7 +80637,7 @@ cal
cbh
cam
cam
-cdQ
+nSU
cet
cCI
cfV
@@ -80234,7 +80655,7 @@ cfV
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -80473,25 +80894,25 @@ cam
cam
cam
cam
-cdQ
+nSU
cet
cCI
cfV
cfV
cgv
cfV
-chx
+opm
cfV
-chx
+opm
cfV
-chx
+opm
cfV
-chx
+opm
cfV
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -80730,7 +81151,7 @@ can
cbi
ccc
ccV
-cdR
+neo
cet
cCI
cfV
@@ -80748,7 +81169,7 @@ cgV
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -80996,7 +81417,7 @@ cgv
bBW
bBW
bBW
-yia
+hKR
abI
aaa
bBW
@@ -81005,7 +81426,7 @@ bBW
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -81244,7 +81665,7 @@ cap
bXk
ccd
ccX
-cdS
+xOF
ceu
cfb
cfu
@@ -81262,7 +81683,7 @@ bBW
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -81501,7 +81922,7 @@ caq
cbk
cce
ccY
-cdT
+jBK
cev
cfc
cfv
@@ -81514,12 +81935,12 @@ cii
cis
ciG
aaa
-yia
+hKR
cgV
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -81724,7 +82145,7 @@ brl
bsL
bul
bwU
-cBP
+bsK
bsK
bAg
bpY
@@ -81758,7 +82179,7 @@ car
bXk
ccf
ccZ
-cdU
+wgx
cew
cfd
cfw
@@ -81768,7 +82189,7 @@ aht
abI
abI
cij
-cit
+hTZ
ciH
abI
abI
@@ -81776,7 +82197,7 @@ aht
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -82015,17 +82436,17 @@ cdN
ccW
ceY
cda
-cdV
+xhx
cex
cfe
cfx
cfa
cgv
cgV
-yia
+hKR
aaa
cik
-ciu
+uIi
ciI
aaa
aaa
@@ -82033,7 +82454,7 @@ aaa
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -82272,7 +82693,7 @@ cat
bXk
ccg
cey
-cdW
+mtp
cey
cey
cfy
@@ -82290,7 +82711,7 @@ bBW
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -82540,14 +82961,14 @@ bBW
aaa
aaa
abI
-yia
+hKR
aaa
bBW
bBW
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -82778,7 +83199,7 @@ bUi
bUV
bVO
bWA
-izp
+mCe
bYj
bYQ
bZA
@@ -82786,7 +83207,7 @@ cav
cbl
cch
cdc
-cdX
+xSE
cet
cCI
cfV
@@ -82804,7 +83225,7 @@ cgV
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -83035,7 +83456,7 @@ bUj
bUW
bVP
bWB
-izp
+mCe
bYk
bYQ
bZA
@@ -83043,25 +83464,25 @@ cam
cam
cam
cam
-cdQ
+nSU
cet
cCI
cfV
cfV
cgv
cfV
-chz
+ygO
cfV
-chz
+ygO
cfV
-chz
+ygO
cfV
-chz
+ygO
cfV
cfV
cfV
bXk
-let
+abI
abI
abI
aaa
@@ -83217,9 +83638,9 @@ ahi
atY
auU
atY
-vTA
+lQQ
ayf
-vTA
+lQQ
aAF
aBz
aCP
@@ -83292,7 +83713,7 @@ bUk
bUX
bVQ
bWC
-izp
+mCe
bYl
bYO
bZC
@@ -83300,7 +83721,7 @@ cal
cbm
cci
cam
-cdQ
+nSU
cet
cCI
cfV
@@ -83318,7 +83739,7 @@ cfV
cfV
cfV
bXk
-let
+abI
abI
aaa
aaa
@@ -83557,7 +83978,7 @@ caw
cbn
ccj
cam
-cdY
+hmE
bXk
bXk
bXk
@@ -83575,7 +83996,7 @@ cgY
cfV
cks
bXk
-let
+abI
aaa
aaa
aaa
@@ -83815,9 +84236,9 @@ cbo
cck
cdf
cdZ
-cez
+dgh
cff
-cfz
+qXl
cfY
cfV
cgZ
@@ -83832,7 +84253,7 @@ cgZ
cfV
cfV
bXk
-let
+abI
abI
aaa
aaa
@@ -84089,7 +84510,7 @@ cjU
ckq
ckq
bXk
-let
+abI
aaa
aaa
aaa
@@ -84346,7 +84767,7 @@ bXk
bXk
bXk
ckJ
-let
+abI
aaa
aaa
aaa
@@ -85066,7 +85487,7 @@ bsT
bus
bvz
bxg
-yhZ
+mdL
bAs
bBu
bCI
@@ -85797,7 +86218,7 @@ aBI
aES
aBI
aBI
-aGW
+aEY
aHG
aBI
aJX
@@ -85820,7 +86241,7 @@ aMb
aSX
aMb
aBI
-aGW
+aEY
bgA
bhe
aDZ
@@ -87079,12 +87500,12 @@ aaa
aaa
aaa
aaa
-eHp
-tap
-aau
-khx
-iVb
-qWK
+sQF
+yac
+kUC
+tLB
+uic
+raF
aJI
aLe
aMe
@@ -87103,7 +87524,7 @@ aVu
bat
aLf
bcy
-lvl
+qAM
aEj
aEj
bgC
@@ -87336,11 +87757,11 @@ aaa
aaa
aaa
aaa
-eHp
-eJt
-vpU
-fic
-uyt
+sQF
+oMg
+vEy
+gDh
+wtT
aIU
aJH
aLe
@@ -87593,20 +88014,20 @@ apX
aBL
aBL
apX
-eHp
-kdc
-jZg
-eHp
+sQF
+kbq
+gQJ
+sQF
aHN
aIU
aJI
-xzr
-xzr
+lAs
+lAs
aNG
aOR
-iCc
-xzr
-xzr
+iKb
+lAs
+lAs
aTb
aOT
aVp
@@ -87617,7 +88038,7 @@ aPY
bav
aLf
aFi
-nJY
+jBh
beI
bfv
bgE
@@ -87857,7 +88278,7 @@ aET
aHN
aIU
aJI
-xzr
+lAs
aMg
aNH
aOS
@@ -88114,11 +88535,11 @@ aET
aHN
aJh
bhe
-xzr
+lAs
aMh
aNI
-fID
-ecV
+fwl
+dMB
aRi
aSf
aTd
@@ -88371,13 +88792,13 @@ aHn
aIi
aJi
aKe
-xzr
+lAs
aMi
aNJ
-fID
+fwl
aPZ
aRj
-xzr
+lAs
aTe
aUo
aVs
@@ -88628,13 +89049,13 @@ aET
aHN
aIU
aJI
-xzr
+lAs
aMj
aNK
-fID
-ecV
-ecV
-iCc
+fwl
+dMB
+dMB
+iKb
aTf
aUp
aVt
@@ -88885,7 +89306,7 @@ aET
aHN
aIU
aJI
-xzr
+lAs
aMk
aNL
aOU
@@ -89142,10 +89563,10 @@ cos
coy
aJj
aJI
-xzr
+lAs
aMl
aNM
-fki
+dse
aQb
aRl
aSh
@@ -89399,14 +89820,14 @@ aDZ
aDZ
aJk
aJH
-xzr
+lAs
aMm
-xzr
+lAs
aOW
-xzr
-xzr
-xzr
-frt
+lAs
+lAs
+lAs
+eeQ
aUs
aLf
aLf
@@ -89461,7 +89882,7 @@ bVl
bWc
bWR
bXG
-bYw
+jLW
bZi
bZR
caL
@@ -89649,18 +90070,18 @@ aAP
avk
aDg
aEc
-aGW
+aEY
cot
aBI
aBI
aBI
aJl
aKf
-xzr
+lAs
aMn
-xzr
+lAs
aOX
-xzr
+lAs
aRm
aLg
aTi
@@ -89717,13 +90138,13 @@ bUA
bVm
bWd
bWS
-bWd
-bYx
+wJP
+aht
bZj
bZS
caM
cbE
-bYw
+thA
cdk
ced
bYw
@@ -89920,7 +90341,7 @@ cDa
cDa
cDa
aLg
-kqj
+wDZ
aUu
aVx
aVx
@@ -92526,9 +92947,9 @@ bDa
bEa
bFm
bGs
-bHy
-bHy
-bHy
+gMm
+gMm
+jOJ
bHy
bHy
bHy
@@ -93283,7 +93704,7 @@ bkE
aht
bnd
boh
-uPm
+bpp
bqx
brQ
btr
@@ -93556,7 +93977,7 @@ bFq
bGw
bAF
bHy
-bHy
+tYg
bHy
bHy
bHy
@@ -93808,12 +94229,12 @@ bzk
bAH
blX
blX
-bEe
+bAF
bFr
bGx
bHB
bIN
-bIN
+dAF
bLg
bMo
bNq
@@ -94065,16 +94486,16 @@ bzl
blX
bBU
bDe
-bEe
+bAF
bFs
bGy
bHC
-bGy
+kwI
bJT
-bEe
+bAF
bMp
-bEg
-bEg
+bHy
+bHy
ahi
aaa
aaa
@@ -94322,15 +94743,15 @@ bzm
blX
blX
blX
-bEe
+bAF
bFt
-bGy
+khk
bHD
-bGy
+kwI
bJU
-bEe
-bEg
-bEg
+bAF
+bHy
+bHy
abI
abI
abI
@@ -94836,15 +95257,15 @@ bzn
bAH
blX
blX
-bEe
+bAF
bFv
bGA
-bGA
-bGA
-bGA
+fBm
+fwr
+gMm
bLi
-bEg
-abI
+bHy
+bHy
aht
abI
abI
@@ -95093,15 +95514,15 @@ bzo
blX
bBU
bDe
-bEe
+bnj
bFw
-bGA
+onw
bHF
-bGy
-bGy
+rBh
+vMX
bLj
bIS
-abI
+lJr
aaa
aaa
aaa
@@ -95350,15 +95771,15 @@ bzp
blX
blX
blX
-bEe
+bnj
bFx
-bGy
+lQn
bHG
bIP
bJW
bLk
-bIS
-abI
+xfc
+lJr
aaa
aaa
aaa
@@ -95607,15 +96028,15 @@ bnj
bnj
bnj
bnj
-bEe
+bnj
bFy
bGB
-bEe
+iIy
bIQ
bJX
bLl
-bEg
-abI
+xfc
+lJr
aaa
aaa
aaa
@@ -95864,16 +96285,16 @@ bzq
bAH
blX
blX
-bEe
+bnj
bFz
bGC
-bHH
+lQn
bIR
bJY
bLm
-bEg
-abI
-aaa
+lpS
+gxK
+gxK
aaa
aaa
aaa
@@ -96121,16 +96542,16 @@ bzr
blX
blX
bDe
-bEg
+bnj
bFA
-bEg
-bEg
-bIS
-bEg
-bIS
-bEg
-abI
-aaa
+fKj
+nwu
+lQn
+wBr
+lQn
+qKm
+wTO
+gxK
aaa
aaa
aaa
@@ -96378,16 +96799,16 @@ bzs
blX
blX
blX
-bkF
+bnj
bFB
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fKj
+fKj
+ejp
+uek
+yeS
+mES
+qnT
+lJr
aaa
aaa
aaa
@@ -96635,16 +97056,16 @@ bnj
bnj
bnj
bnj
-bkF
-bjD
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bnj
+bFB
+rxQ
+fKj
+hKA
+izF
+lQn
+mES
+htU
+lJr
aaa
aaa
aaa
@@ -96892,16 +97313,16 @@ bzt
bAH
blX
blX
-bkF
+bnj
bFC
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+xGQ
+fKj
+uoj
+iXQ
+lQn
+mES
+dMI
+lJr
aaa
aaa
aaa
@@ -97149,16 +97570,16 @@ bzu
blX
blX
bDe
-bkF
-bjD
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bnj
+dNt
+mPt
+fKj
+sQr
+uyY
+tYI
+kmh
+oEG
+gxK
aaa
aaa
aaa
@@ -97406,16 +97827,16 @@ bzv
blX
blX
blX
-bkF
-bjD
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bnj
+jXA
+not
+fKj
+vpz
+ptq
+lQn
+lQn
+hFp
+gxK
aaa
aaa
aaa
@@ -97665,14 +98086,14 @@ bkF
bkF
bkF
bFD
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+gxK
+gxK
+pWF
+sCz
+lQn
+lQn
+dWy
+gxK
aaa
aaa
aaa
@@ -97917,19 +98338,19 @@ buT
bwk
aEj
bzw
-bma
-bma
-bma
+kAz
+kAz
+kAz
bEh
bzx
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fKj
+gxK
+gtb
+vJd
+oJT
+fvG
+rtE
+lJr
aaa
aaa
aaa
@@ -98179,14 +98600,14 @@ aEj
aEl
aEl
aEj
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fKj
+gxK
+lju
+qDU
+gAj
+rtE
+lJr
+lJr
aaa
aaa
aaa
@@ -98437,12 +98858,12 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+gxK
+gxK
+gxK
+lJr
+lJr
+lJr
aaa
aaa
aaa
diff --git a/_maps/cit_map_files/generic/CentCom.dmm b/_maps/cit_map_files/generic/CentCom.dmm
new file mode 100644
index 0000000000..d758c687ba
--- /dev/null
+++ b/_maps/cit_map_files/generic/CentCom.dmm
@@ -0,0 +1,79229 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/open/space/basic,
+/area/space)
+"ab" = (
+/turf/closed/indestructible/riveted,
+/area/space)
+"ac" = (
+/obj/structure/window/reinforced,
+/turf/closed/indestructible/riveted,
+/area/space)
+"ad" = (
+/turf/open/space,
+/area/space)
+"ae" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/closed/indestructible/riveted,
+/area/space)
+"af" = (
+/turf/open/floor/holofloor/snow,
+/area/holodeck/rec_center/winterwonderland)
+"ag" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/closed/indestructible/riveted,
+/area/space)
+"ah" = (
+/obj/structure/foamedmetal,
+/obj/structure/window{
+ dir = 8
+ },
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/bunker)
+"ai" = (
+/obj/structure/foamedmetal,
+/obj/structure/window{
+ dir = 4
+ },
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/bunker)
+"aj" = (
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/bunker)
+"ak" = (
+/obj/structure/table,
+/obj/item/stack/medical/ointment{
+ heal_burn = 10
+ },
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/bunker)
+"al" = (
+/obj/structure/table/wood{
+ layer = 3.3
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-05";
+ pixel_y = 4
+ },
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"am" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"an" = (
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"ao" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ layer = 3.3
+ },
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"ap" = (
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/wildlife)
+"aq" = (
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/offline)
+"ar" = (
+/turf/open/floor/holofloor/plating/burnmix,
+/area/holodeck/rec_center/burn)
+"as" = (
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/court)
+"at" = (
+/turf/open/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/court)
+"au" = (
+/turf/open/floor/holofloor{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/court)
+"av" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/closed/indestructible/riveted,
+/area/space)
+"aw" = (
+/obj/structure/flora/bush,
+/turf/open/floor/holofloor/snow,
+/area/holodeck/rec_center/winterwonderland)
+"ax" = (
+/obj/effect/holodeck_effect/mobspawner/penguin,
+/obj/effect/holodeck_effect/mobspawner/penguin,
+/obj/item/toy/snowball{
+ pixel_y = 6
+ },
+/obj/item/toy/snowball{
+ pixel_x = 5
+ },
+/obj/item/toy/snowball{
+ pixel_x = -4
+ },
+/turf/open/floor/holofloor/snow,
+/area/holodeck/rec_center/winterwonderland)
+"ay" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/bunker)
+"az" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/matches{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aA" = (
+/obj/structure/chair/wood/normal,
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aB" = (
+/obj/effect/holodeck_effect/mobspawner,
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/wildlife)
+"aC" = (
+/obj/effect/holodeck_effect/sparks,
+/turf/open/floor/holofloor/plating/burnmix,
+/area/holodeck/rec_center/burn)
+"aD" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/court)
+"aE" = (
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/court)
+"aF" = (
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/court)
+"aG" = (
+/obj/structure/flora/grass/brown,
+/turf/open/floor/holofloor/snow,
+/area/holodeck/rec_center/winterwonderland)
+"aH" = (
+/obj/structure/table,
+/obj/item/gun/energy/laser,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/bunker)
+"aI" = (
+/obj/structure/chair/wood/normal{
+ dir = 4
+ },
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aJ" = (
+/obj/structure/table/wood/poker,
+/obj/item/clothing/mask/cigarette/pipe,
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aK" = (
+/obj/structure/table/wood/poker,
+/obj/structure/table/wood/poker,
+/obj/effect/holodeck_effect/cards,
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aL" = (
+/obj/structure/chair/wood/normal{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aM" = (
+/obj/structure/statue/snow/snowman{
+ anchored = 1
+ },
+/turf/open/floor/holofloor/snow,
+/area/holodeck/rec_center/winterwonderland)
+"aN" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aO" = (
+/obj/structure/chair/wood/wings,
+/turf/open/floor/holofloor/snow,
+/area/holodeck/rec_center/winterwonderland)
+"aP" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aQ" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aR" = (
+/obj/effect/holodeck_effect/mobspawner/penguin_baby,
+/obj/structure/flora/tree/pine,
+/turf/open/floor/holofloor/snow,
+/area/holodeck/rec_center/winterwonderland)
+"aS" = (
+/obj/structure/chair/wood,
+/turf/open/floor/holofloor/snow,
+/area/holodeck/rec_center/winterwonderland)
+"aT" = (
+/obj/structure/table/wood,
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-05";
+ pixel_y = 10
+ },
+/turf/open/floor/holofloor{
+ icon_state = "wood";
+ dir = 9
+ },
+/area/holodeck/rec_center/lounge)
+"aU" = (
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "stairs-l"
+ },
+/area/holodeck/rec_center/lounge)
+"aV" = (
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "stairs-r"
+ },
+/area/holodeck/rec_center/lounge)
+"aW" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/court)
+"aX" = (
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/court)
+"aY" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_y = 4
+ },
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/lounge)
+"aZ" = (
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/lounge)
+"ba" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/lounge)
+"bb" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/lounge)
+"bc" = (
+/obj/structure/table,
+/obj/item/stack/medical/bruise_pack{
+ heal_brute = 10
+ },
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/bunker)
+"bd" = (
+/obj/structure/table/wood,
+/obj/item/device/instrument/violin,
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/lounge)
+"be" = (
+/obj/structure/chair/comfy/brown{
+ buildstackamount = 0;
+ dir = 1
+ },
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/lounge)
+"bf" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/barman_recipes,
+/obj/item/clothing/mask/cigarette/pipe,
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/lounge)
+"bg" = (
+/turf/open/floor/holofloor{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/court)
+"bh" = (
+/turf/open/floor/holofloor{
+ dir = 2;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/court)
+"bi" = (
+/turf/open/floor/holofloor{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/court)
+"bj" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/closed/indestructible/riveted,
+/area/space)
+"bk" = (
+/obj/effect/holodeck_effect/mobspawner/bee,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/anthophila)
+"bl" = (
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"bm" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"bn" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"bo" = (
+/obj/structure/table/glass,
+/obj/item/surgicaldrill,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bp" = (
+/obj/structure/table/glass,
+/obj/item/hemostat,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bq" = (
+/obj/structure/table/glass,
+/obj/item/scalpel{
+ pixel_y = 10
+ },
+/obj/item/circular_saw,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"br" = (
+/obj/structure/table/glass,
+/obj/item/retractor,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bs" = (
+/obj/structure/table/glass,
+/obj/item/stack/medical/gauze,
+/obj/item/cautery,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bt" = (
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"bu" = (
+/obj/structure/holohoop{
+ layer = 3.9
+ },
+/turf/open/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"bv" = (
+/turf/open/floor/holofloor{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"bw" = (
+/turf/open/floor/holofloor/beach,
+/area/holodeck/rec_center/beach)
+"bx" = (
+/obj/structure/table,
+/obj/machinery/readybutton,
+/turf/open/floor/holofloor/basalt,
+/area/holodeck/rec_center/thunderdome)
+"by" = (
+/obj/structure/table,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/under/color/red,
+/obj/item/holo/esword/red,
+/turf/open/floor/holofloor/basalt,
+/area/holodeck/rec_center/thunderdome)
+"bz" = (
+/obj/structure/table,
+/turf/open/floor/holofloor/basalt,
+/area/holodeck/rec_center/thunderdome)
+"bA" = (
+/obj/machinery/readybutton,
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"bB" = (
+/turf/open/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"bC" = (
+/turf/open/floor/holofloor{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"bD" = (
+/obj/effect/holodeck_effect/mobspawner/pet,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"bE" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"bF" = (
+/obj/effect/holodeck_effect/mobspawner/pet,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"bG" = (
+/obj/structure/table/glass,
+/obj/item/surgical_drapes,
+/obj/item/razor,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bH" = (
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bI" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"bJ" = (
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/basketball)
+"bK" = (
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"bL" = (
+/obj/effect/overlay/palmtree_r,
+/turf/open/floor/holofloor/beach,
+/area/holodeck/rec_center/beach)
+"bM" = (
+/obj/effect/overlay/palmtree_l,
+/obj/effect/overlay/coconut,
+/turf/open/floor/holofloor/beach,
+/area/holodeck/rec_center/beach)
+"bN" = (
+/turf/open/floor/holofloor/basalt,
+/area/holodeck/rec_center/thunderdome)
+"bO" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"bP" = (
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/dodgeball)
+"bQ" = (
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"bR" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"bS" = (
+/obj/item/storage/bag/easterbasket{
+ name = "picnic basket";
+ pixel_y = 6
+ },
+/turf/open/floor/holofloor{
+ icon_state = "redbluefull"
+ },
+/area/holodeck/rec_center/pet_lounge)
+"bT" = (
+/obj/item/trash/plate,
+/turf/open/floor/holofloor{
+ icon_state = "redbluefull"
+ },
+/area/holodeck/rec_center/pet_lounge)
+"bU" = (
+/obj/structure/table/optable,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bV" = (
+/obj/machinery/computer/operating{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bW" = (
+/obj/structure/table/glass,
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/item/clothing/suit/apron/surgical,
+/obj/item/clothing/mask/surgical,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"bX" = (
+/turf/open/floor/holofloor{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"bY" = (
+/obj/effect/holodeck_effect/mobspawner/monkey,
+/turf/open/floor/holofloor/beach,
+/area/holodeck/rec_center/beach)
+"bZ" = (
+/turf/open/floor/holofloor{
+ dir = 2;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"ca" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"cb" = (
+/obj/effect/holodeck_effect/mobspawner/pet,
+/turf/open/floor/holofloor{
+ icon_state = "redbluefull"
+ },
+/area/holodeck/rec_center/pet_lounge)
+"cc" = (
+/obj/item/shovel/spade{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/turf/open/floor/holofloor{
+ icon_state = "redbluefull"
+ },
+/area/holodeck/rec_center/pet_lounge)
+"cd" = (
+/obj/structure/window{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"ce" = (
+/obj/effect/holodeck_effect/mobspawner/bee,
+/obj/item/clothing/head/beekeeper_head,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/anthophila)
+"cf" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"cg" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/syringes{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/beakers,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"ch" = (
+/obj/machinery/washing_machine,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"ci" = (
+/turf/open/floor/holofloor{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"cj" = (
+/turf/open/floor/holofloor{
+ dir = 2;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"ck" = (
+/turf/open/floor/holofloor{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/basketball)
+"cl" = (
+/obj/item/clothing/under/color/rainbow,
+/obj/item/clothing/glasses/sunglasses,
+/turf/open/floor/holofloor/beach,
+/area/holodeck/rec_center/beach)
+"cm" = (
+/obj/structure/window,
+/turf/open/floor/holofloor/basalt,
+/area/holodeck/rec_center/thunderdome)
+"cn" = (
+/obj/structure/window{
+ dir = 1
+ },
+/obj/item/toy/beach_ball/holoball/dodgeball,
+/turf/open/floor/holofloor{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"co" = (
+/obj/structure/window{
+ dir = 1
+ },
+/obj/item/toy/beach_ball/holoball/dodgeball,
+/turf/open/floor/holofloor{
+ dir = 2;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"cp" = (
+/obj/structure/window{
+ dir = 1
+ },
+/obj/item/toy/beach_ball/holoball/dodgeball,
+/turf/open/floor/holofloor{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/dodgeball)
+"cq" = (
+/obj/effect/holodeck_effect/mobspawner/bee,
+/obj/effect/decal/remains/human,
+/obj/item/clothing/suit/beekeeper_suit,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/anthophila)
+"cr" = (
+/obj/effect/holodeck_effect/mobspawner/bee,
+/obj/item/melee/flyswatter,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/anthophila)
+"cs" = (
+/obj/machinery/chem_master,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"ct" = (
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"cu" = (
+/obj/structure/closet/wardrobe/white,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"cv" = (
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"cw" = (
+/turf/open/floor/holofloor{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"cx" = (
+/turf/open/floor/holofloor{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"cy" = (
+/obj/item/toy/beach_ball,
+/turf/open/floor/holofloor/beach,
+/area/holodeck/rec_center/beach)
+"cz" = (
+/obj/structure/window{
+ dir = 1
+ },
+/turf/open/floor/holofloor/basalt,
+/area/holodeck/rec_center/thunderdome)
+"cA" = (
+/obj/structure/window,
+/obj/item/toy/beach_ball/holoball/dodgeball,
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"cB" = (
+/obj/structure/window,
+/obj/item/toy/beach_ball/holoball/dodgeball,
+/turf/open/floor/holofloor{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"cC" = (
+/obj/structure/window,
+/obj/item/toy/beach_ball/holoball/dodgeball,
+/turf/open/floor/holofloor{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"cD" = (
+/obj/structure/sink/puddle,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"cE" = (
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"cF" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"cG" = (
+/obj/item/toy/beach_ball/holoball,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/basketball)
+"cH" = (
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"cI" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"cJ" = (
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"cK" = (
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"cL" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/cultivator,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"cM" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/holodeck_effect/mobspawner/pet,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"cN" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"cO" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/window{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"cP" = (
+/obj/structure/window{
+ dir = 8
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/structure/window{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"cQ" = (
+/obj/structure/window{
+ dir = 8
+ },
+/obj/machinery/computer/pandemic,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"cR" = (
+/turf/open/floor/holofloor{
+ dir = 2;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"cS" = (
+/turf/open/floor/holofloor/beach/coast_t,
+/area/holodeck/rec_center/beach)
+"cT" = (
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/holofloor/beach/coast_t,
+/area/holodeck/rec_center/beach)
+"cU" = (
+/obj/item/shovel/spade,
+/turf/open/floor/holofloor/beach/coast_t,
+/area/holodeck/rec_center/beach)
+"cV" = (
+/turf/open/floor/holofloor{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"cW" = (
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/pet_lounge)
+"cX" = (
+/obj/machinery/door/window/westleft,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"cY" = (
+/turf/open/floor/holofloor/beach/coast_b,
+/area/holodeck/rec_center/beach)
+"cZ" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/machinery/iv_drip,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"da" = (
+/obj/structure/window{
+ dir = 8
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
+/obj/machinery/iv_drip,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"db" = (
+/obj/structure/window{
+ dir = 8
+ },
+/obj/machinery/sleeper{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"dc" = (
+/obj/machinery/iv_drip,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"dd" = (
+/obj/machinery/sleeper{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/medical)
+"de" = (
+/turf/open/floor/holofloor{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"df" = (
+/obj/structure/holohoop{
+ dir = 1;
+ layer = 4.1
+ },
+/turf/open/floor/holofloor{
+ dir = 2;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"dg" = (
+/turf/open/floor/holofloor{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/basketball)
+"dh" = (
+/turf/open/floor/holofloor/beach/water,
+/area/holodeck/rec_center/beach)
+"di" = (
+/obj/structure/table,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/under/color/green,
+/obj/item/holo/esword/green,
+/turf/open/floor/holofloor/basalt,
+/area/holodeck/rec_center/thunderdome)
+"dj" = (
+/turf/open/floor/holofloor{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"dk" = (
+/turf/open/floor/holofloor{
+ dir = 2;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"dl" = (
+/obj/machinery/readybutton,
+/turf/open/floor/holofloor{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/dodgeball)
+"dm" = (
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/refuel)
+"dn" = (
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/spacechess)
+"do" = (
+/obj/item/banner/blue,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"dp" = (
+/obj/structure/table/wood/fancy,
+/obj/item/clothing/suit/armor/riot/knight/blue,
+/obj/item/clothing/head/helmet/knight/blue,
+/obj/item/claymore/weak,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"dq" = (
+/obj/structure/table/wood/fancy,
+/obj/item/clothing/head/crown/fancy{
+ pixel_y = 6
+ },
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"dr" = (
+/obj/structure/table/wood/fancy,
+/obj/item/clothing/suit/armor/riot/knight/red,
+/obj/item/clothing/head/helmet/knight/red,
+/obj/item/claymore/weak,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"ds" = (
+/obj/item/banner/red,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"dt" = (
+/turf/open/floor/holofloor/hyperspace,
+/area/holodeck/rec_center/kobayashi)
+"du" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/holofloor/hyperspace,
+/area/holodeck/rec_center/kobayashi)
+"dv" = (
+/obj/structure/closet{
+ density = 0
+ },
+/obj/item/clothing/suit/judgerobe,
+/obj/item/clothing/head/powdered_wig,
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dw" = (
+/obj/structure/table/wood/fancy,
+/obj/item/clothing/suit/nun,
+/obj/item/clothing/head/nun_hood,
+/obj/item/clothing/suit/holidaypriest,
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dx" = (
+/obj/structure/table/wood/fancy,
+/obj/item/storage/book/bible,
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dy" = (
+/obj/structure/table/wood/fancy,
+/obj/item/book/manual/wiki/security_space_law,
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dz" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dA" = (
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"dB" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/firingrange)
+"dC" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/firingrange)
+"dD" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/firingrange)
+"dE" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/firingrange)
+"dF" = (
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/firingrange)
+"dG" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/refuel)
+"dH" = (
+/obj/item/cardboard_cutout/adaptive{
+ color = "#9999BB";
+ icon_state = "cutout_viva";
+ name = "Black Rook"
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/spacechess)
+"dI" = (
+/obj/item/cardboard_cutout/adaptive{
+ color = "#9999BB";
+ icon_state = "cutout_mime";
+ name = "Black Queen"
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/spacechess)
+"dJ" = (
+/obj/item/cardboard_cutout/adaptive{
+ color = "#9999BB";
+ icon_state = "cutout_clown";
+ name = "Black King"
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/spacechess)
+"dK" = (
+/obj/item/cardboard_cutout/adaptive{
+ color = "#9999BB";
+ icon_state = "cutout_ian";
+ name = "Black Knight"
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/spacechess)
+"dL" = (
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"dM" = (
+/obj/structure/chair/wood/wings,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"dN" = (
+/obj/structure/window/reinforced,
+/obj/machinery/mass_driver{
+ dir = 1;
+ icon_state = "mass_driver";
+ id = "trektorpedo1";
+ name = "photon torpedo tube"
+ },
+/obj/item/toy/minimeteor{
+ color = "";
+ desc = "A primitive long-range weapon, inferior to Nanotrasen's perfected bluespace artillery.";
+ icon = 'icons/effects/effects.dmi';
+ icon_state = "impact_laser";
+ name = "photon torpedo"
+ },
+/turf/open/floor/holofloor/hyperspace,
+/area/holodeck/rec_center/kobayashi)
+"dO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/computer/arcade/orion_trail{
+ desc = "A test for cadets";
+ events = list("Raiders" = 3, "Interstellar Flux" = 1, "Illness" = 3, "Breakdown" = 2, "Malfunction" = 2, "Collision" = 1, "Spaceport" = 2);
+ icon = 'icons/obj/machines/particle_accelerator.dmi';
+ icon_state = "control_boxp";
+ name = "Kobayashi Maru control computer";
+ prizes = list(/obj/item/paper/fluff/holodeck/trek_diploma = 1);
+ settlers = list("Kirk","Worf","Gene")
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"dP" = (
+/obj/machinery/button/massdriver{
+ id = "trektorpedo1";
+ layer = 3.9;
+ name = "photon torpedo button";
+ pixel_x = -16;
+ pixel_y = -5
+ },
+/obj/machinery/button/massdriver{
+ id = "trektorpedo2";
+ layer = 3.9;
+ name = "photon torpedo button";
+ pixel_x = 16;
+ pixel_y = -5
+ },
+/obj/machinery/computer/arcade/orion_trail{
+ desc = "A test for cadets";
+ events = list("Raiders" = 3, "Interstellar Flux" = 1, "Illness" = 3, "Breakdown" = 2, "Malfunction" = 2, "Collision" = 1, "Spaceport" = 2);
+ icon = 'icons/obj/machines/particle_accelerator.dmi';
+ icon_state = "control_boxp";
+ name = "Kobayashi Maru control computer";
+ prizes = list(/obj/item/paper/fluff/holodeck/trek_diploma = 1);
+ settlers = list("Kirk","Worf","Gene")
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"dQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/computer/arcade/orion_trail{
+ desc = "A test for cadets";
+ events = list("Raiders" = 3, "Interstellar Flux" = 1, "Illness" = 3, "Breakdown" = 2, "Malfunction" = 2, "Collision" = 1, "Spaceport" = 2);
+ icon = 'icons/obj/machines/particle_accelerator.dmi';
+ icon_state = "control_boxp";
+ name = "Kobayashi Maru control computer";
+ prizes = list(/obj/item/paper/fluff/holodeck/trek_diploma = 1);
+ settlers = list("Kirk","Worf","Gene")
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"dR" = (
+/obj/structure/window/reinforced,
+/obj/machinery/mass_driver{
+ dir = 1;
+ icon_state = "mass_driver";
+ id = "trektorpedo2";
+ name = "photon torpedo tube"
+ },
+/obj/item/toy/minimeteor{
+ color = "";
+ desc = "A primitive long-range weapon, inferior to Nanotrasen's perfected bluespace artillery.";
+ icon = 'icons/effects/effects.dmi';
+ icon_state = "impact_laser";
+ name = "photon torpedo"
+ },
+/turf/open/floor/holofloor/hyperspace,
+/area/holodeck/rec_center/kobayashi)
+"dS" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 1
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dT" = (
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 4
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dU" = (
+/obj/structure/chair,
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dV" = (
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 1
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dW" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 4
+ },
+/area/holodeck/rec_center/chapelcourt)
+"dX" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/melee/classic_baton/telescopic,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"dY" = (
+/obj/structure/table/wood,
+/obj/item/toy/crayon/white,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"dZ" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/apple,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"ea" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white";
+ dir = 8
+ },
+/area/holodeck/rec_center/firingrange)
+"eb" = (
+/obj/structure/target_stake,
+/obj/machinery/magnetic_module,
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/firingrange)
+"ec" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white";
+ dir = 4
+ },
+/area/holodeck/rec_center/firingrange)
+"ed" = (
+/obj/item/cardboard_cutout/adaptive{
+ color = "#9999BB";
+ icon_state = "cutout_greytide";
+ name = "Black Pawn"
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/spacechess)
+"ee" = (
+/obj/item/cardboard_cutout/adaptive{
+ color = "#9999BB";
+ icon_state = "cutout_greytide";
+ name = "Black Pawn"
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/spacechess)
+"ef" = (
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ icon_state = "right"
+ },
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"eg" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"eh" = (
+/obj/machinery/door/window/westleft{
+ dir = 2
+ },
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"ei" = (
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"ej" = (
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"ek" = (
+/obj/structure/chair/comfy{
+ dir = 1
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"el" = (
+/obj/structure/table/glass,
+/obj/item/gun/energy/e_gun/mini/practice_phaser,
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"em" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"en" = (
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 2
+ },
+/area/holodeck/rec_center/chapelcourt)
+"eo" = (
+/obj/item/gavelblock,
+/obj/item/gavelhammer,
+/obj/structure/table/wood,
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"ep" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"eq" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 2
+ },
+/area/holodeck/rec_center/chapelcourt)
+"er" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white";
+ dir = 10
+ },
+/area/holodeck/rec_center/firingrange)
+"es" = (
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/firingrange)
+"et" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white";
+ dir = 6
+ },
+/area/holodeck/rec_center/firingrange)
+"eu" = (
+/obj/item/weldingtool,
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/refuel)
+"ev" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/spacechess)
+"ew" = (
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/spacechess)
+"ex" = (
+/turf/open/floor/holofloor{
+ icon_state = "stairs-old";
+ dir = 8
+ },
+/area/holodeck/rec_center/thunderdome1218)
+"ey" = (
+/obj/structure/table/wood,
+/obj/item/melee/chainofcommand{
+ name = "chain whip"
+ },
+/obj/item/twohanded/spear,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/thunderdome1218)
+"ez" = (
+/obj/structure/table/wood,
+/obj/item/scythe,
+/obj/item/twohanded/spear,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/thunderdome1218)
+"eA" = (
+/obj/structure/table/wood,
+/obj/item/tailclub,
+/obj/item/twohanded/spear,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/thunderdome1218)
+"eB" = (
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"eC" = (
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/obj/item/clothing/under/schoolgirl,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"eD" = (
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/obj/item/clothing/under/schoolgirl/green,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"eE" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/firingrange)
+"eF" = (
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/firingrange)
+"eG" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/firingrange)
+"eH" = (
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/thunderdome1218)
+"eI" = (
+/obj/machinery/modular_computer/console/preset/civilian{
+ dir = 4
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"eJ" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"eK" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"eL" = (
+/obj/machinery/computer/station_alert{
+ dir = 8
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"eM" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 1
+ },
+/area/holodeck/rec_center/chapelcourt)
+"eN" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 4
+ },
+/area/holodeck/rec_center/chapelcourt)
+"eO" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"eP" = (
+/obj/machinery/modular_computer/console/preset/civilian{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"eQ" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"eR" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/area/holodeck/rec_center/chapelcourt)
+"eS" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ icon_state = "chapel";
+ dir = 2
+ },
+/area/holodeck/rec_center/chapelcourt)
+"eT" = (
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/obj/item/clothing/under/schoolgirl/orange,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"eU" = (
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/obj/item/clothing/under/schoolgirl/red,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"eV" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"eW" = (
+/obj/item/cardboard_cutout/adaptive{
+ icon_state = "cutout_greytide";
+ name = "White Pawn"
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/spacechess)
+"eX" = (
+/obj/item/cardboard_cutout/adaptive{
+ icon_state = "cutout_greytide";
+ name = "White Pawn"
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/spacechess)
+"eY" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/thunderdome1218)
+"eZ" = (
+/obj/machinery/door/window/westleft{
+ dir = 2
+ },
+/turf/open/floor/holofloor/asteroid,
+/area/holodeck/rec_center/thunderdome1218)
+"fa" = (
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ icon_state = "right"
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"fb" = (
+/obj/structure/table,
+/obj/item/folder,
+/obj/item/pen/blue,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/holofloor{
+ icon_state = "neutral";
+ dir = 1
+ },
+/area/holodeck/rec_center/kobayashi)
+"fc" = (
+/obj/structure/table,
+/obj/item/folder,
+/obj/item/pen,
+/turf/open/floor/holofloor{
+ icon_state = "neutral";
+ dir = 1
+ },
+/area/holodeck/rec_center/kobayashi)
+"fd" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/folder,
+/obj/item/pen/red,
+/turf/open/floor/holofloor{
+ icon_state = "neutral";
+ dir = 1
+ },
+/area/holodeck/rec_center/kobayashi)
+"fe" = (
+/obj/machinery/door/window/westleft{
+ dir = 2
+ },
+/turf/open/floor/holofloor/plating,
+/area/holodeck/rec_center/kobayashi)
+"ff" = (
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/obj/item/clothing/under/schoolgirl,
+/obj/item/toy/katana,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/school)
+"fg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/firingrange)
+"fh" = (
+/obj/item/paper/guides/jobs/security/range,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/firingrange)
+"fi" = (
+/obj/structure/table/reinforced,
+/obj/machinery/magnetic_controller{
+ autolink = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/holofloor{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/holodeck/rec_center/firingrange)
+"fj" = (
+/obj/item/cardboard_cutout/adaptive{
+ icon_state = "cutout_viva";
+ name = "White Rook"
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/spacechess)
+"fk" = (
+/obj/item/cardboard_cutout/adaptive{
+ icon_state = "cutout_mime";
+ name = "White Queen"
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/spacechess)
+"fl" = (
+/obj/item/cardboard_cutout/adaptive{
+ icon_state = "cutout_clown";
+ name = "White King"
+ },
+/turf/open/floor/holofloor{
+ icon_state = "white"
+ },
+/area/holodeck/rec_center/spacechess)
+"fm" = (
+/obj/item/cardboard_cutout/adaptive{
+ icon_state = "cutout_ian";
+ name = "White Knight"
+ },
+/turf/open/floor/holofloor{
+ dir = 8;
+ icon_state = "dark"
+ },
+/area/holodeck/rec_center/spacechess)
+"fn" = (
+/turf/open/floor/holofloor{
+ icon_state = "neutral";
+ dir = 1
+ },
+/area/holodeck/rec_center/kobayashi)
+"fo" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/kobayashi)
+"fp" = (
+/turf/open/floor/holofloor{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/holodeck/rec_center/firingrange)
+"fq" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/holofloor/grass,
+/area/holodeck/rec_center/thunderdome1218)
+"fr" = (
+/obj/structure/rack,
+/obj/item/clothing/under/trek/medsci,
+/obj/item/clothing/under/trek/medsci,
+/obj/item/clothing/under/trek/command,
+/turf/open/floor/holofloor{
+ icon_state = "neutral";
+ dir = 1
+ },
+/area/holodeck/rec_center/kobayashi)
+"fs" = (
+/turf/open/floor/holofloor{
+ icon_state = "neutral";
+ dir = 2
+ },
+/area/holodeck/rec_center/kobayashi)
+"ft" = (
+/obj/structure/rack,
+/obj/item/clothing/under/trek/engsec,
+/obj/item/clothing/under/trek/engsec,
+/turf/open/floor/holofloor{
+ icon_state = "neutral";
+ dir = 1
+ },
+/area/holodeck/rec_center/kobayashi)
+"fu" = (
+/obj/item/target,
+/obj/item/target/clown,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/firingrange)
+"fv" = (
+/obj/item/target,
+/obj/item/target/syndicate,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/firingrange)
+"fw" = (
+/obj/structure/rack,
+/obj/item/gun/energy/laser/practice,
+/obj/item/clothing/ears/earmuffs,
+/turf/open/floor/holofloor,
+/area/holodeck/rec_center/firingrange)
+"fx" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/closed/indestructible/riveted,
+/area/space)
+"fy" = (
+/obj/machinery/igniter,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fz" = (
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fA" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fB" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/transforming/energy/sword/saber/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fC" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdomegen";
+ name = "General Supply"
+ },
+/turf/open/floor/plasteel/dark,
+/area/tdome/arena_source)
+"fD" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdome";
+ name = "Thunderdome Blast Door"
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fE" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/tdome/arena_source)
+"fF" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fG" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/tdome/arena_source)
+"fH" = (
+/turf/open/floor/plasteel/neutral,
+/area/tdome/arena_source)
+"fI" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/tdome/arena_source)
+"fJ" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/tdome/arena_source)
+"fK" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/transforming/energy/sword/saber/green,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fL" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/tdome/arena_source)
+"fM" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/tdome/arena_source)
+"fN" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fO" = (
+/turf/open/floor/circuit/green,
+/area/tdome/arena_source)
+"fP" = (
+/obj/machinery/flasher{
+ id = "tdomeflash";
+ name = "Thunderdome Flash"
+ },
+/turf/open/floor/circuit/green,
+/area/tdome/arena_source)
+"fQ" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fR" = (
+/obj/machinery/camera{
+ pixel_x = 10;
+ network = list("thunder");
+ c_tag = "Arena"
+ },
+/turf/open/floor/circuit/green,
+/area/tdome/arena_source)
+"fS" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/tdome/arena_source)
+"fT" = (
+/turf/open/floor/plasteel/green/corner,
+/area/tdome/arena_source)
+"fU" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdomehea";
+ name = "Heavy Supply"
+ },
+/turf/open/floor/plasteel/dark,
+/area/tdome/arena_source)
+"fV" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fW" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena_source)
+"fX" = (
+/turf/closed/indestructible/riveted,
+/area/start)
+"fY" = (
+/obj/effect/landmark/start/new_player,
+/turf/open/floor/plating,
+/area/start)
+"fZ" = (
+/turf/closed/indestructible/riveted,
+/area/ctf)
+"ga" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 9
+ },
+/area/ctf)
+"gb" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/ctf)
+"gc" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 5
+ },
+/area/ctf)
+"gd" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 9
+ },
+/area/ctf)
+"ge" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/ctf)
+"gf" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 5
+ },
+/area/ctf)
+"gg" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8
+ },
+/area/ctf)
+"gh" = (
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"gi" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 4
+ },
+/area/ctf)
+"gj" = (
+/turf/open/floor/plasteel/blue,
+/area/ctf)
+"gk" = (
+/turf/open/floor/plasteel/darkblue,
+/area/ctf)
+"gl" = (
+/obj/structure/barricade/security/ctf,
+/turf/open/floor/circuit,
+/area/ctf)
+"gm" = (
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/bluespace,
+/area/ctf)
+"gn" = (
+/obj/structure/barricade/security/ctf,
+/turf/open/floor/plasteel/bluespace,
+/area/ctf)
+"go" = (
+/turf/open/floor/plasteel/bluespace,
+/area/ctf)
+"gp" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/ctf)
+"gq" = (
+/obj/structure/barricade/security/ctf,
+/turf/open/floor/circuit/red,
+/area/ctf)
+"gr" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 4
+ },
+/area/ctf)
+"gs" = (
+/turf/open/floor/plasteel/red,
+/area/ctf)
+"gt" = (
+/obj/structure/kitchenspike,
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"gu" = (
+/turf/closed/indestructible/splashscreen,
+/area/start)
+"gv" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 10
+ },
+/area/ctf)
+"gw" = (
+/turf/open/floor/plasteel/darkblue/side,
+/area/ctf)
+"gx" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 6
+ },
+/area/ctf)
+"gy" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 10
+ },
+/area/ctf)
+"gz" = (
+/turf/open/floor/plasteel/darkred/side,
+/area/ctf)
+"gA" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 6
+ },
+/area/ctf)
+"gB" = (
+/obj/structure/window/reinforced/fulltile{
+ obj_integrity = 5000;
+ max_integrity = 5000;
+ name = "hardened window"
+ },
+/turf/open/floor/plating,
+/area/ctf)
+"gC" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"gD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/ctf)
+"gE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/ctf)
+"gF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"gG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/ctf)
+"gH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"gI" = (
+/obj/machinery/power/emitter/energycannon,
+/turf/open/floor/plating,
+/area/ctf)
+"gJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"gK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/ctf)
+"gL" = (
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/ctf)
+"gM" = (
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/ctf)
+"gN" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/ctf)
+"gO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"gP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ctf)
+"gQ" = (
+/turf/open/floor/plating,
+/area/ctf)
+"gR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ luminosity = 2
+ },
+/area/ctf)
+"gS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/ctf)
+"gT" = (
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/ctf)
+"gU" = (
+/turf/open/floor/plasteel/darkblue/corner,
+/area/ctf)
+"gV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ctf)
+"gW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/ctf)
+"gX" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/ctf)
+"gY" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/ctf)
+"gZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"ha" = (
+/obj/machinery/power/emitter/energycannon{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ctf)
+"hb" = (
+/obj/structure/trap/ctf/blue,
+/turf/open/floor/plasteel/blue,
+/area/ctf)
+"hc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/circuit,
+/area/ctf)
+"hd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/circuit,
+/area/ctf)
+"he" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/circuit,
+/area/ctf)
+"hf" = (
+/turf/open/floor/plasteel/darkred,
+/area/ctf)
+"hg" = (
+/obj/structure/trap/ctf/red,
+/turf/open/floor/plasteel/darkred,
+/area/ctf)
+"hh" = (
+/turf/closed/indestructible/rock/snow,
+/area/syndicate_mothership)
+"hi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/circuit,
+/area/ctf)
+"hj" = (
+/turf/open/floor/circuit,
+/area/ctf)
+"hk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/circuit,
+/area/ctf)
+"hl" = (
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"hm" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/circuit,
+/area/ctf)
+"hn" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/circuit,
+/area/ctf)
+"ho" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/circuit,
+/area/ctf)
+"hp" = (
+/obj/structure/barricade/security/ctf,
+/turf/open/floor/circuit/green/off,
+/area/ctf)
+"hq" = (
+/obj/structure/trap/ctf/red,
+/turf/open/floor/plasteel/red,
+/area/ctf)
+"hr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 9
+ },
+/area/ctf)
+"hs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/ctf)
+"ht" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 5
+ },
+/area/ctf)
+"hu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/circuit/green/off,
+/area/ctf)
+"hv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 9
+ },
+/area/ctf)
+"hw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/ctf)
+"hx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 5
+ },
+/area/ctf)
+"hy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8
+ },
+/area/ctf)
+"hz" = (
+/turf/open/floor/circuit/green/off,
+/area/ctf)
+"hA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 4
+ },
+/area/ctf)
+"hB" = (
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hC" = (
+/turf/open/floor/circuit/green/anim,
+/area/ctf)
+"hD" = (
+/obj/machinery/capture_the_flag/blue,
+/turf/open/floor/circuit/green/anim,
+/area/ctf)
+"hE" = (
+/obj/item/twohanded/ctf/blue,
+/turf/open/floor/circuit/green/anim,
+/area/ctf)
+"hF" = (
+/obj/item/twohanded/ctf/red,
+/turf/open/floor/circuit/green/anim,
+/area/ctf)
+"hG" = (
+/obj/machinery/capture_the_flag/red,
+/turf/open/floor/circuit/green/anim,
+/area/ctf)
+"hH" = (
+/obj/effect/landmark/shuttle_import,
+/turf/open/space,
+/area/space)
+"hI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 10
+ },
+/area/ctf)
+"hJ" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkblue/side,
+/area/ctf)
+"hK" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 6
+ },
+/area/ctf)
+"hL" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/circuit/green/off,
+/area/ctf)
+"hM" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 10
+ },
+/area/ctf)
+"hN" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkred/side,
+/area/ctf)
+"hO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 6
+ },
+/area/ctf)
+"hP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hV" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/circuit/red,
+/area/ctf)
+"hX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"hY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred/corner,
+/area/ctf)
+"hZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 8
+ },
+/area/ctf)
+"ia" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 8
+ },
+/area/ctf)
+"ib" = (
+/turf/open/floor/plasteel/darkred/corner,
+/area/ctf)
+"ic" = (
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 1
+ },
+/area/ctf)
+"id" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 1
+ },
+/area/ctf)
+"ie" = (
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 4
+ },
+/area/ctf)
+"if" = (
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 8
+ },
+/area/ctf)
+"ig" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 8
+ },
+/area/ctf)
+"ih" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ctf)
+"ii" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 4
+ },
+/area/ctf)
+"ij" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 1
+ },
+/area/ctf)
+"ik" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 1
+ },
+/area/ctf)
+"il" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/prison)
+"im" = (
+/obj/machinery/status_display,
+/turf/closed/indestructible/riveted,
+/area/centcom/control)
+"in" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/indestructible/riveted,
+/area/centcom/control)
+"io" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/control)
+"ip" = (
+/obj/machinery/ai_status_display,
+/turf/closed/indestructible/riveted,
+/area/centcom/control)
+"iq" = (
+/obj/effect/landmark/prisonwarp,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/prison)
+"ir" = (
+/turf/closed/indestructible/fakeglass,
+/area/centcom/prison)
+"is" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"it" = (
+/obj/structure/table/reinforced,
+/obj/item/crowbar/red,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/control)
+"iv" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/device/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/device/radio,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iw" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/lockbox/loyalty,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"ix" = (
+/obj/item/storage/box/emps{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/flashbangs,
+/obj/item/grenade/plastic/x4,
+/obj/item/grenade/plastic/x4,
+/obj/item/grenade/plastic/x4,
+/obj/structure/table/reinforced,
+/obj/item/clothing/ears/earmuffs,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iy" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs/cable/zipties,
+/obj/item/device/assembly/flash/handheld,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iz" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iA" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/prison)
+"iB" = (
+/turf/closed/indestructible/fakedoor{
+ name = "CentCom Cell"
+ },
+/area/centcom/prison)
+"iC" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"iD" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/storage/belt/security/full,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/obj/item/crowbar/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iE" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/storage/belt/security/full,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/obj/item/crowbar/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iF" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/supply)
+"iG" = (
+/turf/closed/indestructible/fakedoor{
+ name = "CentCom Warehouse"
+ },
+/area/centcom/supply)
+"iH" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/indestructible/riveted,
+/area/centcom/prison)
+"iI" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/indestructible/riveted,
+/area/centcom/prison)
+"iJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iN" = (
+/obj/machinery/status_display{
+ name = "cargo display";
+ supply_display = 1
+ },
+/turf/closed/indestructible/riveted,
+/area/centcom/supply)
+"iO" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"iP" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"iQ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/centcom/supply)
+"iR" = (
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/centcom/supply)
+"iS" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/centcom/supply)
+"iT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iV" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/storage/belt/security/full,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/obj/item/crowbar/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iW" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/storage/belt/security/full,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/obj/item/crowbar/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"iX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/supply)
+"iY" = (
+/turf/open/floor/plasteel/neutral,
+/area/centcom/supply)
+"iZ" = (
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/centcom/supply)
+"ja" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom";
+ opacity = 1;
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum/external,
+/turf/open/floor/plating,
+/area/centcom/supply)
+"jc" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "XCCQMLoad2";
+ movedir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jd" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = 1;
+ id = "XCCQMLoad2";
+ pixel_x = 6
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/centcom/supply)
+"je" = (
+/turf/open/floor/plasteel/yellowsiding{
+ dir = 1
+ },
+/area/centcom/supply)
+"jf" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/centcom/supply)
+"jg" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"ji" = (
+/obj/machinery/vending/security,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jj" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jk" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ icon_state = "closed";
+ id = "XCCQMLoaddoor2";
+ name = "Supply Dock Loading Door";
+ opacity = 1
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "XCCQMLoad2";
+ movedir = 8
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jl" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "XCCQMLoad2";
+ movedir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jm" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ icon_state = "closed";
+ id = "XCCQMLoaddoor2";
+ name = "Supply Dock Loading Door";
+ opacity = 1
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "XCCQMLoad2";
+ movedir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jn" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "XCCQMLoad2";
+ movedir = 2
+ },
+/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jp" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jq" = (
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jr" = (
+/obj/machinery/door/airlock/external{
+ name = "Supply Shuttle";
+ req_access_txt = "106"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"js" = (
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"ju" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jv" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jx" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jy" = (
+/obj/machinery/button/door{
+ id = "XCCQMLoaddoor";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = -27;
+ pixel_y = -5
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "XCCQMLoaddoor2";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = -27;
+ pixel_y = 5
+ },
+/obj/machinery/computer/cargo{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jz" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jA" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/control)
+"jB" = (
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jC" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 8;
+ height = 7;
+ id = "supply_away";
+ json_key = "cargo";
+ name = "CentCom";
+ width = 20
+ },
+/turf/open/space,
+/area/space)
+"jD" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jE" = (
+/obj/machinery/status_display,
+/turf/closed/indestructible/riveted,
+/area/centcom/supply)
+"jF" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jG" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jH" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jI" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ icon_state = "closed";
+ id = "XCCQMLoaddoor";
+ name = "Supply Dock Loading Door";
+ opacity = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "XCCQMLoad"
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jJ" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "XCCQMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jK" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ icon_state = "closed";
+ id = "XCCQMLoaddoor";
+ name = "Supply Dock Loading Door";
+ opacity = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "XCCQMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jL" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "XCCQMLoad"
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jN" = (
+/obj/structure/closet/wardrobe/cargotech,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jO" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "XCCQMLoad";
+ movedir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jP" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = 1;
+ id = "XCCQMLoad";
+ pixel_x = 6
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/centcom/supply)
+"jQ" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"jR" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jS" = (
+/obj/machinery/computer/prisoner,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jT" = (
+/obj/machinery/computer/security,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jU" = (
+/obj/machinery/computer/secure_data,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jV" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"jW" = (
+/obj/structure/closet/secure_closet/contraband/heads,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"jX" = (
+/obj/structure/closet/secure_closet/courtroom,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"jY" = (
+/obj/structure/closet/lawcloset,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"jZ" = (
+/obj/item/storage/box/handcuffs,
+/obj/item/crowbar/red,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"ka" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kb" = (
+/obj/structure/bookcase/random,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kc" = (
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/device/taperecorder,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kd" = (
+/obj/item/wrench,
+/obj/item/restraints/handcuffs,
+/obj/item/device/assembly/flash/handheld,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"ke" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kf" = (
+/obj/structure/table/wood,
+/obj/item/phone{
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/clothing/mask/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kg" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kh" = (
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"ki" = (
+/obj/docking_port/stationary{
+ area_type = /area/syndicate_mothership;
+ dir = 1;
+ dwidth = 25;
+ height = 50;
+ id = "emergency_syndicate";
+ name = "Syndicate Auxillary Shuttle Dock";
+ turf_type = /turf/open/floor/plating/asteroid/snow;
+ width = 50
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"kj" = (
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/centcom/supply)
+"kk" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kl" = (
+/turf/open/floor/wood,
+/area/centcom/control)
+"km" = (
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kn" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"ko" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien20"
+ },
+/area/abductor_ship)
+"kp" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien21"
+ },
+/area/abductor_ship)
+"kq" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien22"
+ },
+/area/abductor_ship)
+"kr" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien23"
+ },
+/area/abductor_ship)
+"ks" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien24"
+ },
+/area/abductor_ship)
+"kt" = (
+/obj/effect/light_emitter{
+ set_cap = 1;
+ set_luminosity = 4
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"ku" = (
+/turf/closed/indestructible/riveted,
+/area/syndicate_mothership/control)
+"kv" = (
+/obj/machinery/door/poddoor/shuttledock{
+ checkdir = 1;
+ name = "syndicate blast door";
+ turftype = /turf/open/floor/plating/asteroid/snow
+ },
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"kw" = (
+/turf/open/floor/plasteel/yellowsiding,
+/area/centcom/supply)
+"kx" = (
+/obj/structure/filingcabinet/medical,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"ky" = (
+/obj/structure/filingcabinet/security,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"kz" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kA" = (
+/obj/structure/chair/comfy/brown,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kB" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kC" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kD" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kE" = (
+/obj/structure/chair,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kF" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kG" = (
+/obj/structure/chair/comfy/brown{
+ color = "#596479";
+ dir = 2
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kH" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clipboard,
+/obj/item/folder/blue,
+/obj/item/stamp/law,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kI" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kJ" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kK" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien16"
+ },
+/area/abductor_ship)
+"kL" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien17"
+ },
+/area/abductor_ship)
+"kM" = (
+/obj/machinery/abductor/experiment{
+ team_number = 4
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"kN" = (
+/obj/machinery/abductor/console{
+ team_number = 4
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"kO" = (
+/obj/machinery/abductor/pad{
+ team_number = 4
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"kP" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien18"
+ },
+/area/abductor_ship)
+"kQ" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien19"
+ },
+/area/abductor_ship)
+"kR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"kS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"kT" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs,
+/obj/item/crowbar/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"kU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"kV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"kW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"kX" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kY" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder/blue,
+/obj/item/stamp/law,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"kZ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"la" = (
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "leftsecure";
+ name = "CentCom Stand";
+ req_access_txt = "109"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"lb" = (
+/obj/structure/table/wood,
+/obj/machinery/door/window,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ syndie = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"lc" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/gavelblock,
+/obj/item/gavelhammer,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"ld" = (
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ syndie = 1
+ },
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "leftsecure";
+ name = "CentCom Stand";
+ req_access_txt = "109"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"le" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/device/megaphone,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"lf" = (
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "leftsecure";
+ name = "CentCom Stand";
+ req_access_txt = "109"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"lg" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien14"
+ },
+/area/abductor_ship)
+"lh" = (
+/obj/machinery/computer/camera_advanced/abductor{
+ team_number = 4
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"li" = (
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"lj" = (
+/obj/structure/closet/abductor,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"lk" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien15"
+ },
+/area/abductor_ship)
+"ll" = (
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"lm" = (
+/obj/machinery/light,
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"ln" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/brown,
+/area/centcom/supply)
+"lo" = (
+/turf/open/floor/plasteel/brown,
+/area/centcom/supply)
+"lp" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/brown,
+/area/centcom/supply)
+"lq" = (
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/centcom/supply)
+"lr" = (
+/turf/closed/indestructible/fakedoor{
+ name = "CentCom"
+ },
+/area/centcom/control)
+"ls" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"lt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"lu" = (
+/obj/structure/table/reinforced,
+/obj/item/wrench,
+/obj/item/restraints/handcuffs,
+/obj/item/device/assembly/flash/handheld,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"lv" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/device/flashlight/seclite,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"lw" = (
+/obj/structure/chair/comfy/brown{
+ buildstackamount = 0;
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"lx" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/control)
+"ly" = (
+/turf/open/floor/plasteel/vault,
+/area/centcom/control)
+"lz" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"lA" = (
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/control)
+"lB" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien12"
+ },
+/area/abductor_ship)
+"lC" = (
+/obj/item/retractor/alien,
+/obj/item/hemostat/alien,
+/obj/structure/table/abductor,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"lD" = (
+/obj/effect/landmark/abductor/scientist{
+ team_number = 4
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"lE" = (
+/obj/structure/table/optable/abductor,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"lF" = (
+/obj/effect/landmark/abductor/agent{
+ team_number = 4
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"lG" = (
+/obj/structure/table/abductor,
+/obj/item/storage/box/alienhandcuffs,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"lH" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien13"
+ },
+/area/abductor_ship)
+"lI" = (
+/turf/open/space/transit,
+/area/space)
+"lJ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Shuttle Control Office";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"lK" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Supply";
+ req_access_txt = "106"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"lL" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating/asteroid,
+/area/centcom/control)
+"lM" = (
+/obj/machinery/door/poddoor/shutters,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"lN" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plasteel{
+ dir = 6;
+ icon_state = "asteroid8";
+ name = "sand"
+ },
+/area/centcom/control)
+"lO" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"lP" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs,
+/obj/item/crowbar/red,
+/obj/item/crowbar/power,
+/obj/item/storage/belt/security/full,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"lQ" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"lR" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/centcom/control)
+"lS" = (
+/turf/open/floor/plasteel/vault{
+ dir = 9
+ },
+/area/centcom/control)
+"lT" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"lU" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"lV" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ pixel_x = -32;
+ syndie = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"lW" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"lX" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien10"
+ },
+/area/abductor_ship)
+"lY" = (
+/obj/item/surgical_drapes,
+/obj/item/paper/guides/antag/abductor,
+/obj/item/scalpel/alien,
+/obj/structure/table/abductor,
+/obj/item/cautery/alien,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"lZ" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien11"
+ },
+/area/abductor_ship)
+"ma" = (
+/obj/structure/flora/grass/both,
+/obj/effect/light_emitter{
+ set_cap = 1;
+ set_luminosity = 4
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"mb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/stockexchange,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"mc" = (
+/obj/machinery/computer/auxillary_base{
+ pixel_y = 32
+ },
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/pen/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"md" = (
+/obj/machinery/computer/shuttle/labor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"me" = (
+/obj/machinery/computer/shuttle/mining,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"mf" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"mg" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"mh" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"mi" = (
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/centcom/supply)
+"mj" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/centcom/supply)
+"mk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/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"
+ },
+/turf/open/floor/plating,
+/area/centcom/control)
+"ml" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/centcom/control)
+"mm" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"mn" = (
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ syndie = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"mo" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"mp" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"mq" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"mr" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien6"
+ },
+/area/abductor_ship)
+"ms" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien7"
+ },
+/area/abductor_ship)
+"mt" = (
+/obj/machinery/abductor/gland_dispenser,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"mu" = (
+/obj/structure/table/abductor,
+/obj/item/surgicaldrill/alien,
+/obj/item/circular_saw/alien,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"mv" = (
+/obj/structure/bed/abductor,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"mw" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien8"
+ },
+/area/abductor_ship)
+"mx" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien9"
+ },
+/area/abductor_ship)
+"my" = (
+/obj/structure/flora/grass/brown,
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"mz" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"mA" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"mB" = (
+/obj/effect/baseturf_helper/asteroid/snow,
+/turf/closed/indestructible/rock/snow,
+/area/syndicate_mothership)
+"mC" = (
+/obj/item/disk/data,
+/obj/effect/light_emitter{
+ set_cap = 1;
+ set_luminosity = 4
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"mD" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
+"mE" = (
+/obj/machinery/computer/security/telescreen/entertainment,
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
+"mF" = (
+/obj/machinery/ai_status_display,
+/turf/closed/indestructible/riveted,
+/area/centcom/supply)
+"mG" = (
+/obj/machinery/computer/cargo{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"mH" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/centcom/supply)
+"mI" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/centcom/supply)
+"mJ" = (
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/centcom/supply)
+"mK" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/stack/packageWrap,
+/obj/item/stack/cable_coil/white,
+/obj/item/hand_labeler,
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/centcom/control)
+"mL" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/centcom/control)
+"mM" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/centcom/control)
+"mN" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/centcom/control)
+"mO" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/centcom/control)
+"mP" = (
+/obj/item/storage/firstaid/regular,
+/obj/structure/table,
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/centcom/control)
+"mQ" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass,
+/area/centcom/control)
+"mR" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"mS" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/obj/machinery/button/door{
+ id = "XCCsec3";
+ name = "XCC Shutter 3 Control";
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"mT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/button/door{
+ id = "XCCsecdepartment";
+ layer = 3;
+ name = "CC Security Checkpoint Control";
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"mU" = (
+/obj/item/book/manual/wiki/security_space_law,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"mV" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"mW" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/centcom/control)
+"mX" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs/cable/zipties,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"mY" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"mZ" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"na" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"nb" = (
+/turf/closed/indestructible/abductor,
+/area/abductor_ship)
+"nc" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien2"
+ },
+/area/abductor_ship)
+"nd" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien3"
+ },
+/area/abductor_ship)
+"ne" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien4"
+ },
+/area/abductor_ship)
+"nf" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien5"
+ },
+/area/abductor_ship)
+"ng" = (
+/obj/effect/baseturf_helper/asteroid/snow,
+/turf/closed/indestructible/riveted,
+/area/syndicate_mothership/control)
+"nh" = (
+/obj/item/toy/figure/syndie,
+/obj/effect/light_emitter{
+ set_cap = 1;
+ set_luminosity = 4
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"ni" = (
+/obj/machinery/newscaster/security_unit,
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
+"nj" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/centcom/ferry)
+"nk" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/curtain,
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Shower"
+ },
+/obj/item/soap/deluxe,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/centcom/ferry)
+"nl" = (
+/obj/machinery/computer/security/mining{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"nm" = (
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/centcom/supply)
+"nn" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel/brown,
+/area/centcom/supply)
+"no" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"np" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"nq" = (
+/turf/open/floor/plasteel/neutral,
+/area/centcom/control)
+"nr" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/centcom/control)
+"ns" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"nt" = (
+/obj/structure/table/wood,
+/obj/item/storage/photo_album,
+/obj/item/device/camera,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"nu" = (
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"nv" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 8
+ },
+/area/centcom/control)
+"nw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"nx" = (
+/obj/structure/flora/bush,
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"ny" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"nz" = (
+/turf/closed/indestructible/fakeglass,
+/area/syndicate_mothership/control)
+"nA" = (
+/obj/structure/sign/warning/nosmoking,
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
+"nB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/centcom/ferry)
+"nC" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/centcom/ferry)
+"nD" = (
+/obj/item/clipboard,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"nE" = (
+/obj/machinery/keycard_auth{
+ pixel_y = -24
+ },
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/stack/cable_coil/white,
+/obj/item/hand_labeler,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"nF" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -32
+ },
+/obj/machinery/computer/cargo{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"nG" = (
+/obj/machinery/computer/security/mining{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"nH" = (
+/obj/machinery/light,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"nI" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/closet/crate/bin,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/centcom/supply)
+"nJ" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/centcom/supply)
+"nK" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"nL" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/centcom/control)
+"nM" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "XCCsecdepartment";
+ name = "XCC Security Checkpoint Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"nN" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/control)
+"nO" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"nP" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"nQ" = (
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "leftsecure";
+ name = "CentCom Stand";
+ req_access_txt = "109"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"nR" = (
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "leftsecure";
+ name = "CentCom Stand";
+ req_access_txt = "109"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"nS" = (
+/obj/machinery/door/airlock/silver{
+ name = "Bathroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/centcom/ferry)
+"nT" = (
+/obj/machinery/ai_status_display,
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
+"nU" = (
+/obj/machinery/status_display,
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
+"nV" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/centcom/control)
+"nW" = (
+/obj/machinery/vending/cola,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"nX" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/centcom/control)
+"nY" = (
+/obj/machinery/computer/prisoner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"nZ" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"oa" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"ob" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"oc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/control)
+"od" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/control)
+"oe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/ferry)
+"of" = (
+/obj/structure/table/wood,
+/obj/item/device/taperecorder,
+/obj/item/storage/box/handcuffs,
+/obj/item/device/flashlight/seclite,
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"og" = (
+/obj/structure/table/wood,
+/obj/item/storage/photo_album,
+/obj/item/device/camera,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"oh" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-15";
+ pixel_x = -6;
+ pixel_y = 12
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 6
+ },
+/area/centcom/ferry)
+"oi" = (
+/obj/structure/fireplace,
+/turf/open/floor/plasteel/vault,
+/area/centcom/ferry)
+"oj" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 10
+ },
+/area/centcom/ferry)
+"ok" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"ol" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Captain's Desk";
+ departmentType = 5;
+ name = "Captain RC";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"om" = (
+/obj/machinery/computer/card/centcom,
+/obj/item/card/id/centcom,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"on" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"oo" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = 32;
+ req_access_txt = "0";
+ use_power = 0
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/ferry)
+"op" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder/blue,
+/obj/item/melee/chainofcommand,
+/obj/item/stamp/captain,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/ferry)
+"oq" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/wooden_tv,
+/obj/item/storage/secure/safe{
+ pixel_x = 32;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/ferry)
+"or" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"os" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"ot" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/hand_labeler,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"ou" = (
+/obj/machinery/photocopier,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"ov" = (
+/obj/machinery/computer/cargo{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"ow" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/centcom/control)
+"ox" = (
+/obj/structure/table,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"oy" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/centcom/control)
+"oz" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"oA" = (
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"oB" = (
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"oC" = (
+/obj/structure/chair/comfy/brown{
+ color = "#c45c57";
+ dir = 4;
+ icon_state = "comfychair"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"oD" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"oE" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"oF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"oG" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"oH" = (
+/obj/structure/chair/comfy/brown{
+ color = "#c45c57";
+ dir = 8;
+ icon_state = "comfychair"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"oI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"oJ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Office";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"oK" = (
+/obj/structure/chair/comfy/brown{
+ color = "#596479";
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"oL" = (
+/obj/machinery/modular_computer/console/preset/command{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"oM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/stockexchange,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"oN" = (
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/centcom/supply)
+"oO" = (
+/obj/machinery/computer/security/mining{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"oP" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/centcom/control)
+"oQ" = (
+/obj/machinery/vending/snack,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"oR" = (
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/obj/structure/table/wood,
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"oW" = (
+/obj/structure/flora/bush,
+/obj/effect/light_emitter{
+ set_cap = 1;
+ set_luminosity = 4
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"oX" = (
+/obj/structure/bookcase/random,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/ferry)
+"oY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"oZ" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pa" = (
+/obj/structure/table/wood,
+/obj/item/phone{
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/clothing/mask/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pb" = (
+/obj/structure/chair/comfy/brown{
+ color = "#c45c57";
+ dir = 8;
+ icon_state = "comfychair"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pc" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pd" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/wooden_tv,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pe" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pf" = (
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pg" = (
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"ph" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"pi" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/stamp/qm,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"pj" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/centcom/supply)
+"pk" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"pl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor{
+ name = "CentCom Customs";
+ icon_state = "rightsecure";
+ dir = 4;
+ req_access_txt = "109";
+ base_state = "rightsecure"
+ },
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/pen/red,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"pm" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"pn" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"po" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"pp" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"pq" = (
+/obj/structure/bookcase/random,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"pr" = (
+/obj/structure/bookcase/random,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"ps" = (
+/obj/structure/bookcase/random,
+/obj/structure/noticeboard{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"pt" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/centcom/control)
+"pu" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"pv" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/centcom/control)
+"pw" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"pF" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Auxillary Dock";
+ opacity = 1;
+ req_access_txt = ""
+ },
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"pG" = (
+/obj/structure/flora/tree/pine,
+/obj/effect/light_emitter{
+ set_cap = 1;
+ set_luminosity = 4
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"pH" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"pI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"pJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"pK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"pL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pM" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pN" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/under/rank/curator/treasure_hunter,
+/obj/item/clothing/under/skirt/black,
+/obj/item/clothing/under/shorts/black,
+/obj/item/clothing/under/pants/track,
+/obj/item/clothing/accessory/armband/deputy,
+/obj/item/clothing/accessory/waistcoat,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/neck/stripedredscarf,
+/obj/item/clothing/neck/tie/red,
+/obj/item/clothing/head/helmet/space/beret,
+/obj/item/clothing/suit/curator,
+/obj/item/clothing/suit/space/officer,
+/obj/item/clothing/gloves/fingerless,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/glasses/eyepatch,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"pO" = (
+/obj/structure/destructible/cult/tome,
+/obj/item/book/codex_gigas,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"pP" = (
+/obj/structure/table/reinforced,
+/obj/item/cartridge/quartermaster{
+ pixel_x = -6
+ },
+/obj/item/cartridge/quartermaster{
+ pixel_x = 6
+ },
+/obj/item/cartridge/quartermaster{
+ pixel_y = 6
+ },
+/obj/item/device/gps/mining,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"pQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/paper_bin,
+/obj/item/pen/red,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"pR" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/ferry)
+"pX" = (
+/obj/item/storage/crayons,
+/obj/structure/table,
+/obj/item/storage/crayons,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"pY" = (
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"pZ" = (
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qa" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qb" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/restraints/handcuffs,
+/obj/item/device/assembly/flash/handheld,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"qc" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/lighter,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"qd" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"qe" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"qf" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"qg" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/dsquad,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"qh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault,
+/area/centcom/ferry)
+"qi" = (
+/obj/structure/table/wood,
+/obj/item/storage/secure/briefcase{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/lockbox/medal,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"qj" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plasteel/vault,
+/area/centcom/ferry)
+"qk" = (
+/obj/structure/bed,
+/obj/item/bedsheet/black,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"ql" = (
+/obj/structure/dresser,
+/obj/structure/sign/plaques/golden/captain{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"qm" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"qn" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"qo" = (
+/obj/structure/table/reinforced,
+/obj/item/folder,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"qp" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"qq" = (
+/obj/machinery/button/door{
+ id = "XCCsec3";
+ name = "XCC Shutter 3 Control";
+ pixel_x = 24;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"qr" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/centcom/control)
+"qs" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/green/side,
+/area/centcom/control)
+"qt" = (
+/turf/open/floor/plasteel/green/side,
+/area/centcom/control)
+"qu" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/centcom/control)
+"qv" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating/asteroid,
+/area/centcom/control)
+"qw" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plasteel{
+ name = "plating";
+ icon_state = "asteroid5"
+ },
+/area/centcom/control)
+"qx" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/evac)
+"qy" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qz" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qA" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qB" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qC" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qD" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qE" = (
+/turf/closed/indestructible/riveted/uranium,
+/area/wizard_station)
+"qJ" = (
+/obj/machinery/computer/shuttle/syndicate/recall,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qK" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qL" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qM" = (
+/obj/machinery/vending/cigarette{
+ products = list(/obj/item/storage/fancy/cigarettes/cigpack_syndicate = 7, /obj/item/storage/fancy/cigarettes/cigpack_uplift = 3, /obj/item/storage/fancy/cigarettes/cigpack_robust = 2, /obj/item/storage/fancy/cigarettes/cigpack_carp = 3, /obj/item/storage/fancy/cigarettes/cigpack_midori = 1, /obj/item/storage/box/matches = 10, /obj/item/lighter/greyscale = 4, /obj/item/storage/fancy/rollingpapers = 5)
+ },
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qN" = (
+/obj/structure/urinal{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qO" = (
+/obj/item/soap/syndie,
+/obj/structure/mopbucket,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qP" = (
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/item/mop,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"qQ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Office";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"qR" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
+"qS" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+"qT" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom";
+ opacity = 1;
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"qU" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating/asteroid,
+/area/centcom/evac)
+"qV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/evac)
+"qW" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qX" = (
+/obj/structure/fluff/arc,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qY" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"qZ" = (
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"ra" = (
+/obj/machinery/computer/shuttle,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"rd" = (
+/obj/structure/flora/grass/brown,
+/obj/effect/light_emitter{
+ set_cap = 1;
+ set_luminosity = 4
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"re" = (
+/obj/item/paper/fluff/stations/centcom/disk_memo,
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"rf" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"rg" = (
+/mob/living/simple_animal/hostile/carp/cayenne,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"rh" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Restroom";
+ opacity = 1;
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"ri" = (
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"rj" = (
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"rk" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/device/taperecorder,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"rl" = (
+/obj/machinery/computer/auxillary_base{
+ pixel_y = 32
+ },
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/device/radio/headset/headset_cent,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"rm" = (
+/obj/machinery/computer/shuttle/labor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"rn" = (
+/obj/machinery/computer/shuttle/mining,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"ro" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"rp" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"rq" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"rr" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/weldingtool/experimental,
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"rs" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/plasteel{
+ amount = 15
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/stack/rods/fifty,
+/obj/item/stack/cable_coil/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"rt" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/ferry)
+"ru" = (
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"rv" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"rw" = (
+/obj/item/device/flashlight/lamp,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"rx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"ry" = (
+/obj/machinery/computer/card/centcom,
+/obj/item/card/id/centcom,
+/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_y = 28
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"rz" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
+"rA" = (
+/obj/machinery/power/smes/magical,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/white{
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"rB" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Commander's Office APC";
+ pixel_x = 26
+ },
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/plasteel{
+ amount = 15
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/stack/rods/fifty,
+/obj/item/stack/cable_coil/white,
+/obj/item/screwdriver/power,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"rC" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/suit/space/hardsuit/deathsquad{
+ pixel_y = 5
+ },
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/mask/gas/sechailer/swat,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"rD" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/lockbox/loyalty,
+/obj/item/gun/ballistic/automatic/ar,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"rE" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs,
+/obj/item/crowbar/red,
+/obj/item/crowbar/power,
+/obj/item/storage/belt/security/full,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"rF" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plasteel{
+ dir = 6;
+ icon_state = "asteroid8";
+ name = "sand"
+ },
+/area/centcom/supply)
+"rG" = (
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/supply)
+"rH" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ name = "plating";
+ icon_state = "asteroid5"
+ },
+/area/centcom/control)
+"rI" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "XCCsec3";
+ name = "XCC Checkpoint 3 Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"rJ" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/genericbush,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/centcom/control)
+"rK" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/centcom/control)
+"rL" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"rM" = (
+/obj/structure/filingcabinet/medical,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"rN" = (
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"rO" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"rP" = (
+/obj/structure/table/reinforced,
+/obj/item/wrench,
+/obj/item/restraints/handcuffs,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"rQ" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs,
+/obj/item/crowbar/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"rR" = (
+/obj/item/storage/box/ids{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/silver_ids,
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"rS" = (
+/obj/machinery/status_display,
+/turf/closed/indestructible/riveted,
+/area/centcom/evac)
+"rT" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"rU" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"rV" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"rW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"rX" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"se" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"sf" = (
+/obj/structure/table/wood,
+/obj/item/device/paicard,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"sg" = (
+/obj/structure/table/wood,
+/obj/item/pizzabox,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"sh" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start/nukeop,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"si" = (
+/obj/machinery/computer/telecrystals/uplinker,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/syndicate_mothership/control)
+"sj" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ name = "Tactical Toilet";
+ icon_state = "right";
+ dir = 8;
+ opacity = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"sk" = (
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"sl" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"sm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"sn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"so" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"sp" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"sq" = (
+/obj/machinery/computer/shuttle/white_ship{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"sr" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/centcom/ferry)
+"ss" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/centcom/ferry)
+"st" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/centcom/ferry)
+"su" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/centcom/ferry)
+"sv" = (
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/centcom/ferry)
+"sw" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"sx" = (
+/obj/structure/chair/comfy/black,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"sy" = (
+/obj/structure/chair/comfy/black,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"sz" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"sA" = (
+/obj/item/clipboard,
+/obj/structure/table/reinforced,
+/obj/item/device/detective_scanner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"sB" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"sC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"sD" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Storage";
+ req_access_txt = "106"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"sE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"sF" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"sG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"sH" = (
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/vault{
+ name = "Vault Door";
+ req_access_txt = "53"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"sI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"sJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"sK" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/centcom/control)
+"sL" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sM" = (
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"sN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sP" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sQ" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sR" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sS" = (
+/obj/structure/table,
+/obj/item/toy/katana,
+/obj/item/toy/plush/carpplushie,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sU" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sV" = (
+/obj/machinery/door/poddoor/shuttledock,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"sW" = (
+/obj/structure/showcase{
+ desc = "A strange machine supposedly from another world. The Wizard Federation has been meddling with it for years.";
+ icon = 'icons/obj/machines/telecomms.dmi';
+ icon_state = "processor";
+ name = "byond random number generator"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"sX" = (
+/obj/structure/showcase{
+ desc = "A historical figure of great importance to the wizard federation. He spent his long life learning magic, stealing artifacts, and harassing idiots with swords. May he rest forever, Rodney.";
+ icon = 'icons/mob/mob.dmi';
+ icon_state = "nim";
+ name = "wizard of yendor showcase"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"te" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/pizzaslice/mushroom,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"tf" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/obj/item/toy/cards/deck/syndicate{
+ icon_state = "deck_syndicate_full";
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"tg" = (
+/obj/machinery/computer/telecrystals/uplinker,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/syndicate_mothership/control)
+"th" = (
+/obj/structure/closet/cardboard,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"ti" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"tj" = (
+/obj/machinery/porta_turret/syndicate/pod,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/assault_pod)
+"tk" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/assault_pod)
+"tl" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Assault Pod";
+ opacity = 1;
+ req_access_txt = "150"
+ },
+/turf/open/floor/plating,
+/area/shuttle/assault_pod)
+"tn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"to" = (
+/obj/machinery/computer/shuttle/ferry{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"tp" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/centcom/ferry)
+"tq" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/centcom/ferry)
+"tr" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/centcom/ferry)
+"ts" = (
+/turf/open/floor/plasteel/green/corner,
+/area/centcom/ferry)
+"tt" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/centcom/ferry)
+"tu" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Supply";
+ req_access_txt = "106"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"tv" = (
+/turf/open/floor/plasteel/vault{
+ dir = 9
+ },
+/area/centcom/ferry)
+"tw" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/ferry)
+"tx" = (
+/obj/structure/table/wood,
+/obj/item/storage/pill_bottle/dice,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"ty" = (
+/obj/structure/table/wood,
+/obj/item/toy/cards/deck/cas{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/toy/cards/deck/cas/black{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"tz" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"tA" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/restraints/handcuffs,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"tB" = (
+/obj/item/storage/fancy/donut_box,
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"tC" = (
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"tD" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"tE" = (
+/obj/machinery/computer/monitor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"tF" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"tG" = (
+/obj/item/storage/box/handcuffs,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/gun/ballistic/revolver/mateba,
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"tH" = (
+/obj/item/gun/energy/pulse/carbine/loyalpin,
+/obj/item/device/flashlight/seclite,
+/obj/structure/table/reinforced,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"tI" = (
+/obj/item/storage/box/emps{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/flashbangs,
+/obj/item/grenade/plastic/x4,
+/obj/item/grenade/plastic/x4,
+/obj/item/grenade/plastic/x4,
+/obj/structure/table/reinforced,
+/obj/item/clothing/ears/earmuffs,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"tJ" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/centcom/control)
+"tK" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/centcom/control)
+"tL" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"tM" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1;
+ heat_capacity = 1e+006
+ },
+/area/centcom/control)
+"tN" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/centcom/control)
+"tO" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/centcom/control)
+"tP" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/indestructible/riveted,
+/area/centcom/control)
+"tQ" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/control)
+"tR" = (
+/obj/machinery/ai_status_display,
+/turf/closed/indestructible/riveted,
+/area/centcom/evac)
+"tS" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"tT" = (
+/turf/open/floor/plasteel/yellowsiding{
+ dir = 1
+ },
+/area/centcom/evac)
+"tU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"tV" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"tX" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Cockpit"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"ud" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "nukeop_ready";
+ name = "shuttle dock"
+ },
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"ue" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"uf" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/assault_pod)
+"ug" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/assault_pod)
+"uh" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/assault_pod)
+"ui" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"uj" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"uk" = (
+/obj/machinery/keycard_auth{
+ pixel_y = -24
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/button/door{
+ id = "XCCFerry";
+ name = "Hanger Bay Shutters";
+ pixel_y = -38;
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"ul" = (
+/obj/machinery/computer/emergency_shuttle{
+ dir = 1
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"um" = (
+/obj/machinery/computer/communications{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"un" = (
+/obj/machinery/light,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"uo" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/closet/crate/bin,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/centcom/ferry)
+"up" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"uq" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"ur" = (
+/obj/structure/cable/white{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"us" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/centcom/ferry)
+"ut" = (
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"uu" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 9
+ },
+/area/centcom/control)
+"uv" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"uw" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel/darkred/side,
+/area/centcom/control)
+"ux" = (
+/obj/machinery/computer/card/centcom{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "XCCcustoms1";
+ layer = 3.5;
+ name = "CC Customs 1 Control";
+ pixel_x = 8;
+ pixel_y = -24
+ },
+/obj/machinery/button/door{
+ id = "XCCcustoms2";
+ layer = 3.5;
+ name = "CC Customs 2 Control";
+ pixel_x = -8;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/darkred/side,
+/area/centcom/control)
+"uy" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"uz" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/obj/machinery/light,
+/turf/open/floor/plating/asteroid,
+/area/centcom/evac)
+"uA" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"uB" = (
+/turf/open/floor/plasteel/neutral,
+/area/centcom/evac)
+"uC" = (
+/obj/machinery/computer/camera_advanced,
+/turf/open/floor/wood,
+/area/wizard_station)
+"uD" = (
+/obj/structure/table/wood/fancy,
+/obj/item/device/radio/intercom{
+ desc = "Talk smack through this.";
+ syndie = 1
+ },
+/turf/open/floor/wood,
+/area/wizard_station)
+"uE" = (
+/turf/open/floor/carpet,
+/area/wizard_station)
+"uF" = (
+/obj/structure/chair/wood/wings,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"uJ" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "150"
+ },
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"uL" = (
+/obj/machinery/button/door{
+ id = "nukeop_ready";
+ name = "mission launch control";
+ pixel_x = -26;
+ req_access_txt = "151"
+ },
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"uM" = (
+/obj/machinery/computer/telecrystals/uplinker,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/syndicate_mothership/control)
+"uN" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/assault_pod)
+"uO" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Shuttle Control Office";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"uP" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/packageWrap,
+/obj/item/crowbar/power,
+/obj/item/wrench,
+/obj/item/hand_labeler,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"uQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"uR" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"uS" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"uT" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 6
+ },
+/area/centcom/ferry)
+"uU" = (
+/obj/structure/cable/white,
+/turf/open/floor/plasteel/vault,
+/area/centcom/ferry)
+"uV" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 10
+ },
+/area/centcom/ferry)
+"uW" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"uX" = (
+/obj/structure/table/wood,
+/obj/item/dice/d20{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/dice/d10{
+ pixel_x = -3
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"uY" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/open/floor/grass,
+/area/centcom/ferry)
+"uZ" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/centcom/ferry)
+"va" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass,
+/area/centcom/ferry)
+"vb" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/centcom/ferry)
+"vc" = (
+/obj/machinery/newscaster,
+/turf/closed/indestructible/riveted,
+/area/centcom/control)
+"vd" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 1;
+ icon_state = "rightsecure";
+ name = "CentCom Customs";
+ req_access_txt = "109"
+ },
+/obj/machinery/door/window,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"ve" = (
+/turf/open/floor/plasteel/blue/corner,
+/area/centcom/evac)
+"vf" = (
+/turf/open/floor/plasteel/blue/side,
+/area/centcom/evac)
+"vg" = (
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/centcom/evac)
+"vh" = (
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"vi" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 25;
+ height = 50;
+ id = "emergency_away";
+ name = "CentCom Emergency Shuttle Dock";
+ width = 50;
+ json_key = "emergency"
+ },
+/turf/open/space,
+/area/space)
+"vj" = (
+/turf/open/floor/wood,
+/area/wizard_station)
+"vk" = (
+/obj/structure/chair/wood/wings{
+ icon_state = "wooden_chair_wings";
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/wizard_station)
+"vl" = (
+/obj/structure/chair/wood/wings{
+ icon_state = "wooden_chair_wings";
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/wizard_station)
+"vm" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/figure/wizard,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"vn" = (
+/obj/structure/chair/wood/wings{
+ icon_state = "wooden_chair_wings";
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/wizard_station)
+"vu" = (
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/food/drinks/bottle/rum,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"vv" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"vw" = (
+/obj/structure/table/wood,
+/obj/item/device/syndicatedetonator{
+ desc = "This gaudy button can be used to instantly detonate syndicate bombs that have been activated on the station. It is also fun to press."
+ },
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"vx" = (
+/obj/structure/table/wood,
+/obj/item/toy/nuke,
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"vy" = (
+/obj/machinery/door/airlock/centcom{
+ aiControlDisabled = 1;
+ name = "Assault Pod";
+ opacity = 1;
+ req_access_txt = "150"
+ },
+/turf/open/floor/plating,
+/area/shuttle/assault_pod)
+"vz" = (
+/obj/machinery/computer/shuttle/syndicate/drop_pod,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/assault_pod)
+"vA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/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/open/floor/plating,
+/area/centcom/ferry)
+"vB" = (
+/obj/structure/closet/emcloset,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"vC" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"vD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"vE" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"vF" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Office";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"vG" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "XCCsec1";
+ name = "XCC Checkpoint 1 Shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"vH" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/centcom/control)
+"vI" = (
+/obj/machinery/pdapainter,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"vJ" = (
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "XCCFerry";
+ name = "Hanger Bay Shutters";
+ pixel_x = -8;
+ pixel_y = 24;
+ req_access_txt = "2"
+ },
+/obj/machinery/button/door{
+ id = "XCCsec3";
+ name = "CC Main Access Control";
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/obj/machinery/button/door{
+ id = "XCCsec1";
+ name = "CC Shutter 1 Control";
+ pixel_x = 8;
+ pixel_y = 38
+ },
+/obj/machinery/button/door{
+ id = "XCCsec3";
+ name = "XCC Shutter 3 Control";
+ pixel_x = -8;
+ pixel_y = 38
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"vK" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"vL" = (
+/obj/item/device/flashlight/lamp,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"vM" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"vN" = (
+/obj/structure/filingcabinet/medical,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"vO" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/centcom/control)
+"vP" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "XCCcustoms2";
+ name = "XCC Customs 2 Shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"vQ" = (
+/obj/structure/table,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/centcom/control)
+"vR" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/centcom/control)
+"vS" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"vT" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/centcom/control)
+"vU" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "XCCcustoms1";
+ name = "XCC Customs 1 Shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"vV" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"vW" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/centcom/evac)
+"vX" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 5
+ },
+/area/centcom/evac)
+"vY" = (
+/turf/open/floor/plasteel/blue,
+/area/centcom/evac)
+"vZ" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 4
+ },
+/area/centcom/evac)
+"wa" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/centcom/evac)
+"wb" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Observation Room"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"wc" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Game Room"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"wd" = (
+/obj/structure/chair/wood/wings{
+ icon_state = "wooden_chair_wings";
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/wizard_station)
+"wl" = (
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"wm" = (
+/obj/effect/landmark/start/nukeop_leader,
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"wn" = (
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"wo" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Uplink Management Control";
+ req_access_txt = "151"
+ },
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"wp" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"wq" = (
+/obj/structure/chair,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/assault_pod)
+"wr" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"ws" = (
+/turf/open/floor/plasteel/neutral,
+/area/centcom/ferry)
+"wt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"wu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"wv" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "XCCFerry";
+ name = "XCC Ferry Hangar"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"ww" = (
+/obj/machinery/button/door{
+ id = "XCCFerry";
+ name = "Hanger Bay Shutters";
+ pixel_y = 24;
+ req_access_txt = "2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"wx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"wy" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"wz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"wA" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/centcom/ferry)
+"wB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"wC" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Customs";
+ opacity = 1;
+ req_access_txt = "109"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"wD" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/folder/blue{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/lighter,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"wE" = (
+/obj/structure/chair/comfy/brown{
+ color = "#596479";
+ dir = 2
+ },
+/turf/open/floor/plasteel/vault,
+/area/centcom/control)
+"wF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"wG" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/centcom/control)
+"wH" = (
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"wI" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/centcom/control)
+"wJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom";
+ opacity = 1;
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"wK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"wL" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 6
+ },
+/area/centcom/evac)
+"wM" = (
+/obj/structure/chair/wood/wings{
+ icon_state = "wooden_chair_wings";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/wizard_station)
+"wN" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"wO" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"wP" = (
+/obj/structure/table/wood/fancy,
+/obj/item/device/camera/spooky,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"wQ" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"wV" = (
+/obj/machinery/computer/telecrystals/boss{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/syndicate_mothership/control)
+"wW" = (
+/obj/structure/sign/map/left{
+ pixel_y = -32
+ },
+/obj/structure/rack{
+ icon = 'icons/obj/stationobjs.dmi';
+ icon_state = "minibar_left";
+ name = "skeletal minibar"
+ },
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"wX" = (
+/obj/structure/sign/map/right{
+ pixel_y = -32
+ },
+/obj/structure/rack{
+ icon = 'icons/obj/stationobjs.dmi';
+ icon_state = "minibar_right";
+ name = "skeletal minibar"
+ },
+/obj/item/reagent_containers/food/drinks/bottle/gin,
+/turf/open/floor/wood,
+/area/syndicate_mothership/control)
+"wY" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Equipment Room";
+ opacity = 1;
+ req_access_txt = "150"
+ },
+/turf/open/floor/plasteel/bar{
+ dir = 2
+ },
+/area/syndicate_mothership/control)
+"xb" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry_away";
+ json_key = "ferry";
+ name = "CentCom Ferry Dock";
+ width = 5
+ },
+/turf/open/space,
+/area/space)
+"xc" = (
+/obj/machinery/door/airlock/external{
+ name = "Ferry Airlock";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xd" = (
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xf" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xg" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/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"
+ },
+/turf/open/floor/plating,
+/area/centcom/ferry)
+"xi" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xj" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/centcom/ferry)
+"xk" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/centcom/ferry)
+"xl" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/centcom/control)
+"xm" = (
+/obj/machinery/computer/med_data{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"xn" = (
+/obj/machinery/computer/card/centcom{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"xo" = (
+/turf/open/floor/plasteel/green/corner,
+/area/centcom/control)
+"xp" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/centcom/control)
+"xq" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/centcom/control)
+"xr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/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"
+ },
+/turf/open/floor/plating,
+/area/centcom/evac)
+"xs" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"xt" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/centcom/evac)
+"xu" = (
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/wizard_station)
+"xv" = (
+/obj/item/statuebust{
+ pixel_y = 12
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/wood,
+/area/wizard_station)
+"xw" = (
+/obj/machinery/vending/magivend,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"xx" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"xy" = (
+/obj/structure/table/wood/fancy,
+/obj/item/storage/pill_bottle/dice{
+ icon_state = "magicdicebag"
+ },
+/turf/open/floor/carpet,
+/area/wizard_station)
+"xz" = (
+/obj/structure/table/wood/fancy,
+/obj/item/storage/photo_album,
+/obj/machinery/light,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"xG" = (
+/turf/open/floor/plasteel/dark,
+/area/syndicate_mothership/control)
+"xH" = (
+/obj/machinery/mech_bay_recharge_port,
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"xI" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mech_bay_recharge_floor,
+/area/syndicate_mothership/control)
+"xJ" = (
+/obj/machinery/computer/mech_bay_power_console,
+/turf/open/floor/plating,
+/area/syndicate_mothership/control)
+"xK" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel/dark,
+/area/syndicate_mothership/control)
+"xL" = (
+/obj/structure/closet/cardboard/metal,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"xM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"xN" = (
+/obj/machinery/door/airlock/centcom{
+ aiControlDisabled = 1;
+ name = "Assault Pod";
+ opacity = 1;
+ req_access_txt = "150"
+ },
+/obj/docking_port/mobile/assault_pod{
+ dwidth = 3;
+ name = "steel rain";
+ port_direction = 4;
+ preferred_direction = 4;
+ timid = 0
+ },
+/turf/open/floor/plating,
+/area/shuttle/assault_pod)
+"xO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"xP" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"xQ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xS" = (
+/obj/machinery/button/door{
+ id = "XCCsec1";
+ name = "CC Shutter 1 Control";
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"xT" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/centcom/control)
+"xU" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"xV" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/centcom/control)
+"xW" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/centcom/control)
+"xX" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"xY" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 9
+ },
+/area/centcom/evac)
+"xZ" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 10
+ },
+/area/centcom/evac)
+"ya" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Study"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"yb" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Break Room"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"yj" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"yk" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"yl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"ym" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plating/airless,
+/area/syndicate_mothership/control)
+"yn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum,
+/turf/open/floor/plating,
+/area/centcom/ferry)
+"yo" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"yp" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"yq" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -28
+ },
+/obj/structure/sign/warning/securearea{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"yr" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Briefing Room";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"ys" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/centcom/control)
+"yt" = (
+/obj/item/storage/box/ids{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/silver_ids,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"yu" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen/blue,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"yv" = (
+/obj/machinery/computer/prisoner{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"yw" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"yx" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"yy" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/corner,
+/area/centcom/control)
+"yz" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/blue/side,
+/area/centcom/control)
+"yA" = (
+/obj/item/storage/firstaid/regular,
+/obj/structure/table,
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/centcom/control)
+"yB" = (
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4
+ },
+/area/centcom/evac)
+"yC" = (
+/obj/structure/chair/wood/wings,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"yD" = (
+/obj/structure/table/wood,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"yE" = (
+/obj/structure/table/wood,
+/obj/item/retractor,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"yF" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/wizrobe/magusblue,
+/obj/item/clothing/head/wizard/magus,
+/obj/item/staff,
+/obj/structure/mirror/magic{
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"yG" = (
+/obj/structure/table/wood,
+/obj/item/clothing/suit/wizrobe/magusred,
+/obj/item/clothing/head/wizard/magus,
+/obj/item/staff,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"yH" = (
+/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,
+/turf/open/floor/grass,
+/area/wizard_station)
+"yI" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/obj/effect/decal/cleanable/blood/gibs/body,
+/turf/open/floor/grass,
+/area/wizard_station)
+"yJ" = (
+/obj/effect/decal/remains/xeno/larva,
+/turf/open/floor/grass,
+/area/wizard_station)
+"yK" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/grass,
+/area/wizard_station)
+"yU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom";
+ opacity = 1;
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"yX" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/dark,
+/area/syndicate_mothership/control)
+"yY" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"yZ" = (
+/obj/structure/table/wood,
+/obj/item/phone{
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/clothing/mask/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"za" = (
+/obj/structure/bookcase/random,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"zb" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/med_data/laptop,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"zc" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"zd" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"ze" = (
+/obj/structure/closet/secure_closet/ertEngi,
+/obj/structure/sign/directions/engineering{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"zf" = (
+/obj/structure/closet/secure_closet/ertEngi,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"zg" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/device/flashlight/seclite,
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"zh" = (
+/obj/structure/table/reinforced,
+/obj/item/grenade/plastic/c4{
+ pixel_x = 6
+ },
+/obj/item/grenade/plastic/c4{
+ pixel_x = -4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"zi" = (
+/obj/structure/rack,
+/obj/item/gun/energy/e_gun{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/e_gun,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"zj" = (
+/obj/structure/closet/secure_closet/ertCom,
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the Command department is.";
+ dir = 2;
+ icon_state = "direction_bridge";
+ name = "command department";
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"zk" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Infirmary"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"zl" = (
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/centcom/evac)
+"zm" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 1
+ },
+/area/centcom/evac)
+"zo" = (
+/obj/structure/destructible/cult/tome,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"zp" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen"
+ },
+/obj/item/clothing/suit/wizrobe/red,
+/obj/item/clothing/head/wizard/red,
+/obj/item/staff,
+/obj/item/clothing/shoes/sandal/magic,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"zq" = (
+/turf/open/floor/grass,
+/area/wizard_station)
+"zr" = (
+/obj/item/reagent_containers/food/snacks/meat/slab/corgi,
+/turf/open/floor/grass,
+/area/wizard_station)
+"zx" = (
+/obj/structure/closet/syndicate/personal,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/syndicate_mothership/control)
+"zy" = (
+/obj/structure/table,
+/obj/item/gun/energy/ionrifle{
+ pin = /obj/item/device/firing_pin
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/syndicate_mothership/control)
+"zz" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"zA" = (
+/turf/open/floor/plasteel/dark,
+/area/centcom/ferry)
+"zB" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/ert_spawn,
+/turf/open/floor/plasteel/dark,
+/area/centcom/ferry)
+"zC" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/ert_spawn,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/ferry)
+"zD" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"zE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"zF" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/centcom/control)
+"zG" = (
+/turf/open/floor/plasteel/blue/corner,
+/area/centcom/control)
+"zH" = (
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/obj/item/circular_saw,
+/obj/item/retractor{
+ pixel_x = 4
+ },
+/obj/item/hemostat{
+ pixel_x = -4
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"zI" = (
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"zJ" = (
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"zK" = (
+/obj/machinery/computer/med_data{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"zL" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid,
+/area/centcom/evac)
+"zN" = (
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"zO" = (
+/obj/structure/destructible/cult/talisman{
+ desc = "An altar dedicated to the Wizards' Federation"
+ },
+/obj/item/kitchen/knife/ritual,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"zP" = (
+/obj/item/clothing/shoes/sandal/marisa,
+/obj/item/clothing/suit/wizrobe/marisa,
+/obj/item/clothing/head/wizard/marisa,
+/obj/item/staff/broom,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"zQ" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/mob/living/simple_animal/hostile/netherworld{
+ name = "Experiment 35b"
+ },
+/turf/open/floor/grass,
+/area/wizard_station)
+"Ab" = (
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"Ac" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/folder/blue{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/lighter,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"Ad" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/secure/briefcase,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Ae" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Af" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen/blue,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Ag" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Ah" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/ert_spawn,
+/turf/open/floor/plasteel/dark,
+/area/centcom/ferry)
+"Ai" = (
+/obj/machinery/door/poddoor/ert,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"Aj" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs,
+/obj/item/device/radio,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"Ak" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"Al" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Am" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/centcom/control)
+"An" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/centcom/control)
+"Ao" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/green/corner,
+/area/centcom/control)
+"Ap" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/blue/corner,
+/area/centcom/control)
+"Aq" = (
+/obj/structure/table/optable,
+/obj/item/surgical_drapes,
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"Ar" = (
+/turf/open/floor/plasteel/blue,
+/area/centcom/control)
+"As" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"At" = (
+/turf/open/floor/plasteel/yellowsiding,
+/area/centcom/evac)
+"Au" = (
+/obj/machinery/abductor/experiment{
+ team_number = 3
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"Av" = (
+/obj/machinery/abductor/console{
+ team_number = 3
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"Aw" = (
+/obj/machinery/abductor/pad{
+ team_number = 3
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"Ax" = (
+/turf/closed/indestructible/fakeglass{
+ color = "#008000"
+ },
+/area/wizard_station)
+"Ay" = (
+/obj/effect/landmark/start/wizard,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"Az" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/grass,
+/area/wizard_station)
+"AA" = (
+/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime,
+/turf/open/floor/grass,
+/area/wizard_station)
+"AB" = (
+/obj/effect/decal/remains/xeno,
+/turf/open/floor/grass,
+/area/wizard_station)
+"AJ" = (
+/obj/structure/chair/comfy/brown{
+ color = "#596479";
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"AK" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"AL" = (
+/obj/structure/table/reinforced,
+/obj/item/device/flashlight/seclite,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"AM" = (
+/obj/machinery/shuttle_manipulator,
+/turf/open/floor/circuit/green,
+/area/centcom/ferry)
+"AN" = (
+/turf/open/floor/circuit/green,
+/area/centcom/ferry)
+"AO" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"AP" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/ert_spawn,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/ferry)
+"AQ" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"AR" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/zipties,
+/obj/item/crowbar/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"AS" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Briefing Area APC";
+ pixel_x = 26
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"AT" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/indestructible/riveted,
+/area/centcom/control)
+"AU" = (
+/obj/machinery/computer/operating{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"AV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"AW" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"AX" = (
+/obj/structure/table,
+/obj/item/toy/sword,
+/obj/item/gun/ballistic/shotgun/toy/crossbow,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"AY" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"AZ" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"Ba" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"Bb" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"Bc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"Bd" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"Be" = (
+/obj/machinery/computer/camera_advanced/abductor{
+ team_number = 3
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"Bf" = (
+/obj/structure/chair/wood/wings{
+ icon_state = "wooden_chair_wings";
+ dir = 1
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"Bg" = (
+/mob/living/simple_animal/bot/medbot/mysterious{
+ desc = "If you don't accidentally blow yourself up from time to time you're not really a wizard anyway.";
+ faction = list("neutral","silicon","creature");
+ name = "Nobody's Perfect"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"Bh" = (
+/obj/machinery/light,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"Bi" = (
+/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
+/turf/open/floor/grass,
+/area/wizard_station)
+"Bu" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Bv" = (
+/obj/machinery/computer/card/centcom{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"Bw" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/device/taperecorder,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"Bx" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"By" = (
+/obj/structure/table/reinforced,
+/obj/item/crowbar/red,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Bz" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/pen/blue,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"BA" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs/cable/zipties,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"BB" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/lockbox/loyalty,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"BC" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"BD" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"BE" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "XCCsec3";
+ name = "CC Main Access Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"BF" = (
+/obj/item/defibrillator/loaded,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"BG" = (
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -3
+ },
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"BH" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"BI" = (
+/obj/machinery/light,
+/obj/structure/noticeboard{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"BJ" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"BK" = (
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"BL" = (
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/cmo,
+/area/centcom/control)
+"BM" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"BN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 1;
+ icon_state = "rightsecure";
+ name = "CentCom Customs";
+ req_access_txt = "109"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"BO" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"BP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 1;
+ icon_state = "rightsecure";
+ name = "CentCom Customs";
+ req_access_txt = "109"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"BQ" = (
+/obj/effect/landmark/abductor/scientist{
+ team_number = 3
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"BR" = (
+/obj/effect/landmark/abductor/agent{
+ team_number = 3
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"BS" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Observation Deck"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"BY" = (
+/obj/item/toy/figure/syndie,
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"BZ" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/device/radio/headset/headset_cent,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Ca" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/ert_spawn,
+/turf/open/floor/plasteel/dark,
+/area/centcom/ferry)
+"Cb" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/ert_spawn,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/ferry)
+"Cc" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"Cd" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/genericbush,
+/obj/machinery/light,
+/turf/open/floor/grass,
+/area/centcom/evac)
+"Ce" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs/cable/zipties,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"Cf" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/centcom/evac)
+"Cg" = (
+/obj/item/cardboard_cutout{
+ desc = "They seem to be ignoring you... Typical.";
+ dir = 1;
+ icon_state = "cutout_ntsec";
+ name = "Private Security Officer"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/centcom/evac)
+"Ch" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "XCCcustoms1";
+ layer = 3;
+ name = "CC Emergency Docks Control";
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"Ci" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"Cp" = (
+/obj/structure/statue/uranium/nuke,
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"Cq" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/restraints/handcuffs,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Cr" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/lighter,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Cs" = (
+/obj/structure/bookcase/random,
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Ct" = (
+/obj/structure/filingcabinet/medical,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Cu" = (
+/obj/structure/filingcabinet/security,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Cv" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Cw" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Briefing Room APC";
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Cx" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Cy" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/light,
+/obj/structure/noticeboard{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"Cz" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"CA" = (
+/obj/item/device/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/device/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/device/radio,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/ferry)
+"CB" = (
+/obj/structure/closet/secure_closet/ertMed,
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"CC" = (
+/obj/structure/closet/secure_closet/ertMed,
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_y = -32;
+ req_access_txt = "0";
+ use_power = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"CD" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/emps,
+/obj/item/gun/energy/ionrifle,
+/obj/structure/sign/departments/medbay/alt{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"CE" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/syringes,
+/obj/item/gun/syringe/rapidsyringe,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"CF" = (
+/obj/structure/closet/secure_closet/ertSec,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"CG" = (
+/obj/structure/closet/secure_closet/ertSec,
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"CH" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/device/taperecorder,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"CI" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/centcom/control)
+"CJ" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/centcom/control)
+"CK" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/centcom/control)
+"CL" = (
+/obj/structure/table,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/centcom/control)
+"CM" = (
+/obj/structure/filingcabinet/medical,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"CN" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"CO" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/evac)
+"CP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"CQ" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/evac)
+"CR" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"CX" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/storage/belt/security/full,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/obj/item/crowbar/red,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"CY" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/centcom/control)
+"CZ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4
+ },
+/area/centcom/control)
+"Da" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/glass/bottle/charcoal{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/hypospray/medipen,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"Db" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"Dc" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/storage/belt/security/full,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/obj/item/crowbar/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"Dd" = (
+/obj/structure/table/reinforced,
+/obj/item/crowbar/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"De" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"Df" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"Dg" = (
+/obj/item/cardboard_cutout{
+ desc = "They seem to be ignoring you... Typical.";
+ icon_state = "cutout_ntsec";
+ name = "Private Security Officer"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/evac)
+"Dh" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"Dq" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"Dr" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"Ds" = (
+/turf/open/floor/plasteel/darkred/side{
+ dir = 4
+ },
+/area/centcom/control)
+"Dt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/storage/fancy/donut_box,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"Du" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/food/drinks/britcup,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"Dv" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8
+ },
+/area/centcom/control)
+"Dw" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"Dx" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/centcom/evac)
+"Dy" = (
+/turf/open/floor/plasteel/vault{
+ dir = 9
+ },
+/area/centcom/evac)
+"Dz" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"DA" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/device/taperecorder,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"DB" = (
+/obj/item/storage/box/ids{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/silver_ids,
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/evac)
+"DC" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Storage"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"DD" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Personal Quarters"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"DE" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Bathroom"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"DF" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"DG" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 4
+ },
+/area/centcom/control)
+"DH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/obj/machinery/door/window/brigdoor{
+ name = "CentCom Customs";
+ icon_state = "rightsecure";
+ dir = 4;
+ req_access_txt = "109";
+ base_state = "rightsecure"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"DI" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/folder/white,
+/obj/item/pen/blue,
+/obj/machinery/door/window/brigdoor{
+ name = "CentCom Customs";
+ icon_state = "rightsecure";
+ dir = 8;
+ req_access_txt = "109";
+ base_state = "rightsecure"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"DJ" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8
+ },
+/area/centcom/control)
+"DK" = (
+/turf/closed/indestructible/fakedoor{
+ name = "CentCom"
+ },
+/area/centcom/evac)
+"DL" = (
+/obj/item/clothing/suit/wizrobe/black,
+/obj/item/clothing/head/wizard/black,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/wizard_station)
+"DM" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/wizard_station)
+"DN" = (
+/obj/item/cardboard_cutout,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/wizard_station)
+"DO" = (
+/obj/structure/table/wood,
+/obj/item/dice/d20,
+/obj/item/dice,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"DP" = (
+/obj/structure/punching_bag,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"DQ" = (
+/obj/structure/urinal{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/wizard_station)
+"DR" = (
+/turf/open/floor/plasteel/white,
+/area/wizard_station)
+"DS" = (
+/obj/structure/mirror/magic{
+ pixel_y = 28
+ },
+/obj/structure/sink{
+ pixel_y = 20
+ },
+/turf/open/floor/plasteel/white,
+/area/wizard_station)
+"DT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "XCCsec3";
+ name = "CC Main Access Control"
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"DU" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"DV" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/centcom/control)
+"DW" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/green/corner,
+/area/centcom/control)
+"DX" = (
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/machinery/computer/med_data{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"DY" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen/blue,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"DZ" = (
+/obj/item/cautery/alien,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/wizard_station)
+"Ea" = (
+/obj/item/coin/antagtoken,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/wizard_station)
+"Eb" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/wizard_station)
+"Ec" = (
+/obj/structure/bed,
+/obj/item/bedsheet/wiz,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"Ed" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/wizard_station)
+"Ee" = (
+/obj/item/soap/homemade,
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/wizard_station)
+"Ef" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/wizard_station)
+"Eg" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Booth";
+ opacity = 1;
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"Eh" = (
+/obj/structure/closet/cardboard,
+/obj/item/banhammer,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/wizard_station)
+"Ei" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/wizard_station)
+"Ej" = (
+/obj/vehicle/ridden/scooter/skateboard{
+ icon_state = "skateboard";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/wizard_station)
+"Ek" = (
+/obj/structure/dresser,
+/obj/item/storage/backpack/satchel,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"El" = (
+/obj/structure/table/wood,
+/obj/item/storage/bag/tray,
+/obj/item/reagent_containers/food/snacks/burger/spell,
+/turf/open/floor/carpet,
+/area/wizard_station)
+"Em" = (
+/obj/structure/bookcase/random/adult,
+/turf/open/floor/plasteel/white,
+/area/wizard_station)
+"En" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/wizard_station)
+"Eo" = (
+/obj/structure/table/wood/fancy,
+/obj/item/skub{
+ pixel_y = 16
+ },
+/turf/open/floor/plasteel/white,
+/area/wizard_station)
+"Ep" = (
+/turf/closed/indestructible/riveted,
+/area/tdome/tdomeobserve)
+"Eq" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Er" = (
+/obj/machinery/vending/cola,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Es" = (
+/obj/machinery/vending/snack,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Et" = (
+/obj/item/clipboard,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Eu" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/red,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Ev" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/tdome/tdomeobserve)
+"Ew" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/tdome/tdomeobserve)
+"Ex" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"Ey" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Ez" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"EA" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/tdome/tdomeobserve)
+"EB" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"EC" = (
+/obj/machinery/door/airlock{
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi';
+ name = "Engine Room"
+ },
+/obj/structure/barricade/wooden,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"ED" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/holding)
+"EE" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"EF" = (
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"EG" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plasteel{
+ name = "plating";
+ icon_state = "asteroid5"
+ },
+/area/tdome/tdomeobserve)
+"EH" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plasteel{
+ dir = 6;
+ icon_state = "asteroid8";
+ name = "sand"
+ },
+/area/tdome/tdomeobserve)
+"EI" = (
+/turf/open/floor/plasteel/red/corner,
+/area/tdome/tdomeobserve)
+"EJ" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/tdome/tdomeobserve)
+"EK" = (
+/obj/machinery/status_display,
+/turf/closed/indestructible/riveted,
+/area/tdome/tdomeobserve)
+"EL" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"EM" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral,
+/area/tdome/tdomeobserve)
+"EN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"EO" = (
+/turf/open/floor/plasteel/neutral,
+/area/tdome/tdomeobserve)
+"EP" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral,
+/area/tdome/tdomeobserve)
+"EQ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"ER" = (
+/turf/open/floor/plasteel/neutral/corner,
+/area/tdome/tdomeobserve)
+"ES" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"ET" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating/asteroid,
+/area/tdome/tdomeobserve)
+"EU" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating/asteroid,
+/area/tdome/tdomeobserve)
+"EV" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"EW" = (
+/obj/structure/table/wood,
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"EX" = (
+/obj/structure/table/wood,
+/obj/item/gun/magic/wand{
+ desc = "Used in emergencies to reignite magma engines.";
+ max_charges = 0;
+ name = "wand of emergency engine ignition"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"EY" = (
+/obj/structure/table/wood,
+/obj/item/bikehorn/golden{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"EZ" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"Fa" = (
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"Fb" = (
+/obj/structure/closet/secure_closet/bar{
+ req_access_txt = "25"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"Fc" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"Fd" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"Fe" = (
+/obj/structure/rack,
+/obj/item/device/camera,
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Ff" = (
+/obj/structure/rack,
+/obj/item/toy/sword,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Fg" = (
+/obj/structure/rack,
+/obj/item/toy/gun,
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Fh" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Fi" = (
+/turf/open/floor/plating/beach/sand,
+/area/centcom/holding)
+"Fj" = (
+/obj/effect/overlay/palmtree_r,
+/obj/effect/overlay/coconut,
+/turf/open/floor/plating/beach/sand,
+/area/centcom/holding)
+"Fk" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/beach/sand,
+/area/centcom/holding)
+"Fl" = (
+/obj/effect/overlay/palmtree_l,
+/turf/open/floor/plating/beach/sand,
+/area/centcom/holding)
+"Fm" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 9
+ },
+/area/tdome/tdomeobserve)
+"Fn" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"Fo" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 5
+ },
+/area/tdome/tdomeobserve)
+"Fp" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"Fq" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Fr" = (
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "rightsecure";
+ name = "Thunderdome Booth";
+ req_access_txt = "109"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Fs" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Ft" = (
+/turf/open/floor/plasteel/goonplaque{
+ desc = "This is a plaque commemorating the thunderdome and all those who have died at its pearly blast doors."
+ },
+/area/tdome/tdomeobserve)
+"Fu" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/green/corner,
+/area/tdome/tdomeobserve)
+"Fv" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"Fw" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Fx" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/tdome/tdomeobserve)
+"Fy" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"Fz" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/tdome/tdomeobserve)
+"FA" = (
+/obj/structure/table,
+/obj/item/clothing/head/that,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"FB" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"FC" = (
+/obj/item/device/camera,
+/turf/open/floor/plating/beach/sand,
+/area/centcom/holding)
+"FD" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitered/corner{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"FE" = (
+/obj/item/soap/nanotrasen,
+/turf/open/floor/plasteel/white,
+/area/tdome/tdomeobserve)
+"FF" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitered/corner{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"FG" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/red/corner,
+/area/tdome/tdomeobserve)
+"FH" = (
+/turf/open/floor/plasteel/neutral/side,
+/area/tdome/tdomeobserve)
+"FI" = (
+/turf/open/floor/plasteel/red/side,
+/area/tdome/tdomeobserve)
+"FJ" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/tdome/tdomeobserve)
+"FK" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Backstage";
+ opacity = 1;
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"FL" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1;
+ heat_capacity = 1e+006
+ },
+/area/tdome/tdomeobserve)
+"FM" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"FN" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"FO" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/tdome/tdomeobserve)
+"FP" = (
+/turf/open/floor/plasteel/green/side,
+/area/tdome/tdomeobserve)
+"FQ" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"FR" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"FS" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"FT" = (
+/obj/structure/destructible/cult/forge{
+ desc = "An engine used in powering the wizard's ship";
+ name = "magma engine"
+ },
+/turf/open/floor/engine/cult,
+/area/wizard_station)
+"FU" = (
+/obj/structure/table,
+/obj/item/ammo_box/foambox,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"FV" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/shaker,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"FW" = (
+/obj/structure/table,
+/obj/item/lighter,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"FX" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/soda_cans/cola,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"FY" = (
+/obj/structure/table,
+/obj/item/dice/d20,
+/turf/open/floor/plasteel/freezer{
+ dir = 2
+ },
+/area/centcom/holding)
+"FZ" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/item/clothing/head/bandana{
+ pixel_y = -10
+ },
+/obj/item/clothing/glasses/sunglasses,
+/turf/open/floor/plating/beach/sand,
+/area/centcom/holding)
+"Ga" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/plating/beach/sand,
+/area/centcom/holding)
+"Gb" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/tdome/tdomeobserve)
+"Gc" = (
+/turf/open/floor/plasteel/white,
+/area/tdome/tdomeobserve)
+"Gd" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/tdome/tdomeobserve)
+"Ge" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"Gf" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1;
+ heat_capacity = 1e+006
+ },
+/area/tdome/tdomeobserve)
+"Gg" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1;
+ heat_capacity = 1e+006
+ },
+/area/tdome/tdomeobserve)
+"Gh" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"Gi" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/tdome/tdomeobserve)
+"Gj" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/tdome/tdomeobserve)
+"Gk" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/redyellow/side,
+/area/tdome/tdomeobserve)
+"Gl" = (
+/turf/open/floor/plasteel/redyellow/side,
+/area/tdome/tdomeobserve)
+"Gm" = (
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Gn" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/green/side,
+/area/tdome/tdomeobserve)
+"Go" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/tdome/tdomeobserve)
+"Gp" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"Gq" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"Gr" = (
+/obj/structure/window/reinforced{
+ resistance_flags = 3;
+ color = "#008000";
+ dir = 1
+ },
+/turf/open/lava,
+/area/wizard_station)
+"Gs" = (
+/obj/structure/rack,
+/obj/item/clothing/head/that,
+/obj/item/clothing/under/suit_jacket,
+/obj/item/clothing/accessory/waistcoat,
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Gt" = (
+/obj/item/toy/beach_ball,
+/turf/open/floor/plating/beach/sand,
+/area/centcom/holding)
+"Gu" = (
+/obj/machinery/door/airlock/silver{
+ name = "Shower"
+ },
+/turf/open/floor/plasteel/white,
+/area/tdome/tdomeobserve)
+"Gv" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Gw" = (
+/obj/structure/sign/warning/nosmoking,
+/turf/closed/indestructible/riveted,
+/area/tdome/tdomeobserve)
+"Gx" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Gy" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/indestructible/riveted,
+/area/tdome/tdomeobserve)
+"Gz" = (
+/obj/structure/shuttle/engine/heater{
+ resistance_flags = 3
+ },
+/obj/structure/window/reinforced{
+ resistance_flags = 3;
+ color = "#008000";
+ dir = 1
+ },
+/turf/open/lava/airless,
+/area/wizard_station)
+"GA" = (
+/obj/structure/rack,
+/obj/item/storage/crayons,
+/obj/item/gun/ballistic/automatic/toy/pistol,
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"GB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"GC" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GD" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GE" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GF" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/item/reagent_containers/food/snacks/meat/rawbacon,
+/obj/item/reagent_containers/food/snacks/meat/rawbacon,
+/obj/item/reagent_containers/food/snacks/meat/rawbacon,
+/obj/item/reagent_containers/food/snacks/meat/rawbacon,
+/obj/item/reagent_containers/food/snacks/meat/slab/killertomato,
+/obj/item/reagent_containers/food/snacks/meat/slab/killertomato,
+/obj/item/reagent_containers/food/snacks/meat/slab/killertomato,
+/obj/item/reagent_containers/food/snacks/meat/slab/killertomato,
+/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,
+/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,
+/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,
+/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,
+/obj/item/reagent_containers/food/snacks/sausage,
+/obj/item/reagent_containers/food/snacks/sausage,
+/obj/item/reagent_containers/food/snacks/meat/rawcutlet,
+/obj/item/reagent_containers/food/snacks/meat/rawcutlet,
+/obj/item/reagent_containers/food/snacks/meat/rawcutlet,
+/obj/item/reagent_containers/food/snacks/carpmeat,
+/obj/item/reagent_containers/food/snacks/carpmeat,
+/obj/item/reagent_containers/food/snacks/carpmeat,
+/obj/item/reagent_containers/food/snacks/carpmeat,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GG" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/item/reagent_containers/food/snacks/grown/potato,
+/obj/item/reagent_containers/food/snacks/grown/potato,
+/obj/item/reagent_containers/food/snacks/grown/whitebeet,
+/obj/item/reagent_containers/food/snacks/grown/whitebeet,
+/obj/item/reagent_containers/food/snacks/grown/tomato,
+/obj/item/reagent_containers/food/snacks/grown/tomato,
+/obj/item/reagent_containers/food/snacks/grown/rice,
+/obj/item/reagent_containers/food/snacks/grown/rice,
+/obj/item/reagent_containers/food/snacks/grown/icepepper,
+/obj/item/reagent_containers/food/snacks/grown/icepepper,
+/obj/item/reagent_containers/food/snacks/grown/citrus/lemon,
+/obj/item/reagent_containers/food/snacks/grown/citrus/lime,
+/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/reagent_containers/food/snacks/grown/cherries,
+/obj/item/reagent_containers/food/snacks/grown/apple,
+/obj/item/reagent_containers/food/snacks/grown/ambrosia/deus,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GH" = (
+/obj/machinery/processor,
+/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"GI" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/item/reagent_containers/food/snacks/grown/banana,
+/obj/item/reagent_containers/food/snacks/grown/banana,
+/obj/item/reagent_containers/food/snacks/grown/wheat,
+/obj/item/reagent_containers/food/snacks/grown/wheat,
+/obj/item/reagent_containers/food/snacks/grown/vanillapod,
+/obj/item/reagent_containers/food/snacks/grown/vanillapod,
+/obj/item/reagent_containers/food/snacks/grown/sugarcane,
+/obj/item/reagent_containers/food/snacks/grown/sugarcane,
+/obj/item/reagent_containers/food/snacks/grown/oat,
+/obj/item/reagent_containers/food/snacks/grown/oat,
+/obj/item/reagent_containers/food/snacks/grown/grapes,
+/obj/item/reagent_containers/food/snacks/grown/grapes,
+/obj/item/reagent_containers/food/snacks/grown/corn,
+/obj/item/reagent_containers/food/snacks/grown/corn,
+/obj/item/reagent_containers/food/snacks/grown/chili,
+/obj/item/reagent_containers/food/snacks/grown/chili,
+/obj/item/reagent_containers/food/snacks/grown/carrot,
+/obj/item/reagent_containers/food/snacks/grown/apple,
+/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GJ" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/item/reagent_containers/food/snacks/meat/slab/bear,
+/obj/item/reagent_containers/food/snacks/meat/slab/bear,
+/obj/item/reagent_containers/food/snacks/meat/slab/bear,
+/obj/item/reagent_containers/food/snacks/meat/slab/bear,
+/obj/item/reagent_containers/food/snacks/meat/slab/goliath,
+/obj/item/reagent_containers/food/snacks/meat/slab/goliath,
+/obj/item/reagent_containers/food/snacks/meat/slab/goliath,
+/obj/item/reagent_containers/food/snacks/meat/slab/goliath,
+/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
+/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
+/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
+/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
+/obj/item/reagent_containers/food/snacks/spaghetti,
+/obj/item/reagent_containers/food/snacks/spaghetti,
+/obj/item/reagent_containers/food/snacks/meat/rawcutlet,
+/obj/item/reagent_containers/food/snacks/meat/rawcutlet,
+/obj/item/reagent_containers/food/snacks/meat/rawcutlet,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GK" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/tdome/tdomeobserve)
+"GL" = (
+/obj/structure/table/wood,
+/obj/structure/sign/plaques/golden{
+ pixel_y = 32
+ },
+/obj/item/clothing/accessory/lawyers_badge{
+ desc = "A badge of upmost glory.";
+ name = "thunderdome badge"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tdome/tdomeobserve)
+"GM" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GN" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/tdome/tdomeobserve)
+"GO" = (
+/obj/structure/table/wood,
+/obj/structure/sign/plaques/golden{
+ pixel_y = 32
+ },
+/obj/item/clothing/accessory/medal/silver{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tdome/tdomeobserve)
+"GP" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass,
+/area/tdome/tdomeobserve)
+"GQ" = (
+/obj/structure/table/wood,
+/obj/machinery/reagentgrinder{
+ desc = "Used to grind things up into raw materials and liquids.";
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GR" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/beanbag,
+/obj/item/gun/ballistic/revolver/doublebarrel,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GS" = (
+/obj/structure/table/wood,
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GT" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GU" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"GV" = (
+/turf/open/floor/plasteel/green/corner,
+/area/tdome/tdomeobserve)
+"GW" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"GX" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/space,
+/area/wizard_station)
+"GY" = (
+/obj/structure/rack,
+/obj/item/storage/crayons,
+/obj/item/gun/ballistic/shotgun/toy/crossbow,
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"GZ" = (
+/turf/open/floor/plating/beach/coastline_b,
+/area/centcom/holding)
+"Ha" = (
+/obj/item/clothing/head/collectable/paper,
+/turf/open/floor/plating/beach/coastline_b,
+/area/centcom/holding)
+"Hb" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/whitered/corner{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"Hc" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"Hd" = (
+/turf/open/floor/plasteel/red,
+/area/tdome/tdomeobserve)
+"He" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/trophy/gold_cup,
+/turf/open/floor/plasteel/grimy,
+/area/tdome/tdomeobserve)
+"Hf" = (
+/turf/open/floor/plasteel/bar,
+/area/tdome/tdomeobserve)
+"Hg" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Hh" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"Hi" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/under/suit_jacket/female{
+ desc = "A black trouser suit for women. Very formal.";
+ name = "black suit";
+ pixel_x = 3;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Hj" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Hk" = (
+/obj/structure/table,
+/obj/item/gun/ballistic/automatic/toy/pistol,
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Hl" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/cafeteria,
+/area/centcom/holding)
+"Hm" = (
+/turf/open/floor/plating/beach/water,
+/area/centcom/holding)
+"Hn" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/white,
+/area/tdome/tdomeobserve)
+"Ho" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = -8
+ },
+/obj/item/kitchen/knife,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Hp" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/red,
+/area/tdome/tdomeobserve)
+"Hq" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/tdome/tdomeobserve)
+"Hr" = (
+/obj/structure/table/wood,
+/obj/structure/sign/plaques/thunderdome{
+ pixel_y = -32
+ },
+/obj/item/clothing/accessory/medal/gold{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/clothing/accessory/medal/gold,
+/turf/open/floor/plasteel/grimy,
+/area/tdome/tdomeobserve)
+"Hs" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Ht" = (
+/obj/structure/table/wood,
+/obj/structure/sign/plaques/thunderdome{
+ pixel_y = -32
+ },
+/obj/item/clothing/accessory/medal{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tdome/tdomeobserve)
+"Hu" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/bar,
+/area/tdome/tdomeobserve)
+"Hv" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/bar,
+/area/tdome/tdomeobserve)
+"Hw" = (
+/obj/machinery/chem_master/condimaster{
+ name = "HoochMaster 2000"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Hx" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/tdome/tdomeobserve)
+"Hy" = (
+/obj/effect/spawner/structure/window/hollow/reinforced,
+/turf/open/floor/plasteel,
+/area/centcom/holding)
+"Hz" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/centcom/holding)
+"HA" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/whitered/corner{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HB" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/mint,
+/obj/item/reagent_containers/food/condiment/enzyme{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HC" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/red,
+/area/tdome/tdomeobserve)
+"HD" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/turf/open/floor/plasteel/bar,
+/area/tdome/tdomeobserve)
+"HE" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HF" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/whitegreen/corner,
+/area/tdome/tdomeobserve)
+"HG" = (
+/obj/item/reagent_containers/food/snacks/egg/rainbow{
+ desc = "I bet you think you're pretty clever... well you are.";
+ name = "easter egg"
+ },
+/turf/open/space,
+/area/space)
+"HH" = (
+/obj/effect/landmark/holding_facility,
+/turf/open/floor/engine,
+/area/centcom/holding)
+"HI" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HJ" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/suit/apron/chef,
+/obj/item/kitchen/rollingpin,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = -8
+ },
+/obj/item/reagent_containers/food/drinks/britcup,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"HL" = (
+/turf/open/floor/plasteel/vault,
+/area/tdome/tdomeobserve)
+"HM" = (
+/obj/structure/chair,
+/obj/effect/landmark/thunderdome/observe,
+/obj/structure/sign/barsign{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HN" = (
+/obj/structure/chair,
+/obj/effect/landmark/thunderdome/observe,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HO" = (
+/obj/machinery/computer/security/telescreen,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"HQ" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HR" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"HS" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Locker Room";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"HT" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"HU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ desc = "Used to grind things up into raw materials and liquids.";
+ pixel_y = 5
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/storage/bag/tray,
+/obj/item/kitchen/fork,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"HW" = (
+/turf/open/floor/plasteel/redyellow,
+/area/tdome/tdomeobserve)
+"HX" = (
+/obj/machinery/vending/boozeomat,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"HZ" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/neutral/corner,
+/area/tdome/tdomeobserve)
+"Ia" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/tdome/tdomeobserve)
+"Ib" = (
+/obj/structure/rack,
+/obj/item/storage/box/donkpockets,
+/obj/item/storage/box/donkpockets,
+/obj/item/clothing/head/chefhat,
+/turf/open/floor/plasteel/vault,
+/area/tdome/tdomeobserve)
+"Ic" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/noticeboard{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"Id" = (
+/obj/machinery/computer/security/telescreen,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Ie" = (
+/obj/item/storage/fancy/cigarettes/cigars{
+ pixel_y = 6
+ },
+/obj/item/storage/fancy/cigarettes/cigars/cohiba{
+ pixel_y = 3
+ },
+/obj/item/storage/fancy/cigarettes/cigars/havana,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"If" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/tdome/tdomeobserve)
+"Ig" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8;
+ heat_capacity = 1e+006
+ },
+/area/tdome/tdomeobserve)
+"Ih" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/tdome/tdomeobserve)
+"Ii" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ desc = "Cooks and boils stuff, somehow.";
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Ij" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ desc = "Cooks and boils stuff, somehow.";
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/structure/sign/barsign{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Ik" = (
+/obj/machinery/icecream_vat,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Il" = (
+/turf/closed/indestructible/fakeglass,
+/area/tdome/tdomeobserve)
+"Io" = (
+/obj/item/storage/box/matches{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/structure/table/wood,
+/obj/structure/sign/barsign{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Ip" = (
+/obj/item/lighter{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/lighter,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Iq" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/barman_recipes,
+/obj/item/reagent_containers/food/drinks/shaker,
+/obj/item/reagent_containers/glass/rag,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"Ir" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/tdome/tdomeobserve)
+"Is" = (
+/obj/machinery/igniter,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"It" = (
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Iu" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Iv" = (
+/turf/closed/indestructible/riveted,
+/area/tdome/tdomeadmin)
+"Iw" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid,
+/area/tdome/tdomeadmin)
+"Ix" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Administration";
+ opacity = 1;
+ req_access_txt = "102"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"Iy" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/transforming/energy/sword/saber/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Iz" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdomegen";
+ name = "General Supply"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IA" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IB" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IC" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"ID" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdome";
+ name = "Thunderdome Blast Door"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IE" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/tdome/arena)
+"IF" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IG" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/tdome/arena)
+"IH" = (
+/turf/open/floor/plasteel/neutral,
+/area/tdome/arena)
+"II" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/tdome/arena)
+"IJ" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/tdome/arena)
+"IL" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IM" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IN" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IP" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/transforming/energy/sword/saber/green,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IQ" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ dir = 6;
+ icon_state = "asteroid8";
+ name = "sand"
+ },
+/area/tdome/tdomeadmin)
+"IR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/tdome/tdomeadmin)
+"IS" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"IT" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IU" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IV" = (
+/obj/effect/landmark/thunderdome/two,
+/turf/open/floor/plasteel/neutral,
+/area/tdome/arena)
+"IW" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"IX" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/tdome/arena)
+"IY" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 4
+ },
+/area/tdome/arena)
+"IZ" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Ja" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Jb" = (
+/obj/effect/landmark/thunderdome/one,
+/turf/open/floor/plasteel/neutral,
+/area/tdome/arena)
+"Jc" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Jd" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plasteel{
+ name = "plating";
+ icon_state = "asteroid5"
+ },
+/area/tdome/tdomeadmin)
+"Je" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"Jf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"Jg" = (
+/obj/machinery/camera{
+ pixel_x = 11;
+ pixel_y = -9;
+ network = list("thunder");
+ c_tag = "Red Team"
+ },
+/obj/effect/landmark/thunderdome/two,
+/turf/open/floor/plasteel/neutral,
+/area/tdome/arena)
+"Jh" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Ji" = (
+/turf/open/floor/circuit/green,
+/area/tdome/arena)
+"Jj" = (
+/obj/machinery/flasher{
+ id = "tdomeflash";
+ name = "Thunderdome Flash"
+ },
+/turf/open/floor/circuit/green,
+/area/tdome/arena)
+"Jk" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Jl" = (
+/obj/machinery/camera{
+ pixel_x = 12;
+ pixel_y = -10;
+ network = list("thunder");
+ c_tag = "Green Team"
+ },
+/obj/effect/landmark/thunderdome/one,
+/turf/open/floor/plasteel/neutral,
+/area/tdome/arena)
+"Jm" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating/asteroid,
+/area/tdome/tdomeadmin)
+"Jn" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/open/floor/plasteel{
+ dir = 6;
+ icon_state = "asteroid8";
+ name = "sand"
+ },
+/area/tdome/tdomeadmin)
+"Jo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"Jp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"Jq" = (
+/obj/machinery/camera{
+ pixel_x = 10;
+ network = list("thunder");
+ c_tag = "Arena"
+ },
+/turf/open/floor/circuit/green,
+/area/tdome/arena)
+"Jr" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating/asteroid,
+/area/tdome/tdomeadmin)
+"Js" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/tdome/arena)
+"Jt" = (
+/turf/open/floor/plasteel/green/corner,
+/area/tdome/arena)
+"Ju" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Jv" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Jw" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Jx" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Jy" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Jz" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"JA" = (
+/obj/machinery/abductor/experiment{
+ team_number = 1
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"JB" = (
+/obj/machinery/abductor/console{
+ team_number = 1
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"JC" = (
+/obj/machinery/abductor/pad{
+ team_number = 1
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"JD" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdomehea";
+ name = "Heavy Supply"
+ },
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"JF" = (
+/obj/machinery/computer/camera_advanced/abductor{
+ team_number = 1
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"JG" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/tdome/tdomeadmin)
+"JH" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"JI" = (
+/turf/closed/indestructible/fakeglass,
+/area/tdome/tdomeadmin)
+"JL" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"JM" = (
+/obj/effect/landmark/abductor/scientist,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"JN" = (
+/obj/effect/landmark/abductor/agent,
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"JO" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/tdome/tdomeadmin)
+"JP" = (
+/obj/item/device/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/device/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/device/radio,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"JQ" = (
+/obj/effect/landmark/thunderdome/admin,
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tdome/tdomeadmin)
+"JR" = (
+/obj/machinery/computer/security/telescreen,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"JS" = (
+/obj/structure/chair/comfy/brown{
+ color = "#66b266";
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/tdome/tdomeadmin)
+"JT" = (
+/obj/machinery/button/flasher{
+ id = "tdomeflash"
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"JU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/tdome/tdomeadmin)
+"JV" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape/backup)
+"JW" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape/backup)
+"JX" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"JY" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"JZ" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Ka" = (
+/turf/open/floor/plasteel/grimy,
+/area/tdome/tdomeadmin)
+"Kb" = (
+/turf/open/floor/plasteel/darkgreen/side{
+ dir = 1
+ },
+/area/tdome/tdomeadmin)
+"Kc" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kd" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape/backup)
+"Ke" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape/backup)
+"Kf" = (
+/obj/machinery/computer/emergency_shuttle{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape/backup)
+"Kg" = (
+/turf/closed/indestructible/fakedoor{
+ name = "Thunderdome Admin"
+ },
+/area/tdome/tdomeadmin)
+"Kh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Administration";
+ opacity = 1;
+ req_access_txt = "102"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"Ki" = (
+/turf/open/floor/plasteel/vault,
+/area/tdome/tdomeadmin)
+"Kj" = (
+/obj/machinery/door/airlock/external{
+ name = "Backup Emergency Escape Shuttle"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"Kk" = (
+/obj/machinery/door/airlock/titanium,
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 2;
+ height = 8;
+ id = "backup_away";
+ name = "Backup Shuttle Dock";
+ width = 8
+ },
+/obj/docking_port/mobile/emergency/backup,
+/turf/open/floor/plating,
+/area/shuttle/escape/backup)
+"Kl" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape/backup)
+"Km" = (
+/obj/structure/table/wood,
+/obj/item/paper/fluff/stations/centcom/broken_evac,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape/backup)
+"Kn" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Ko" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kp" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/restraints/handcuffs,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kq" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/device/radio/headset/headset_cent,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kr" = (
+/obj/structure/table/wood,
+/obj/item/phone{
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/clothing/mask/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Ks" = (
+/obj/machinery/button/door{
+ id = "thunderdomehea";
+ name = "Heavy Supply Control";
+ req_access_txt = "102"
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kt" = (
+/obj/machinery/button/door{
+ id = "thunderdome";
+ name = "Main Blast Doors Control";
+ req_access_txt = "102"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Ku" = (
+/obj/machinery/button/door{
+ id = "thunderdomegen";
+ name = "General Supply Control";
+ req_access_txt = "102"
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kv" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/lighter,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kw" = (
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kx" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Ky" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ pixel_y = 5
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeadmin)
+"Kz" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/random,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape/backup)
+"KA" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass,
+/area/tdome/tdomeadmin)
+"KB" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/obj/machinery/light,
+/turf/open/floor/grass,
+/area/tdome/tdomeadmin)
+"KC" = (
+/obj/machinery/status_display,
+/turf/closed/indestructible/riveted,
+/area/tdome/tdomeadmin)
+"KD" = (
+/obj/machinery/ai_status_display,
+/turf/closed/indestructible/riveted,
+/area/tdome/tdomeadmin)
+"KE" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape/backup)
+"KF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape/backup)
+"KG" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/open/floor/grass,
+/area/tdome/tdomeadmin)
+"KH" = (
+/turf/closed/wall/mineral/titanium,
+/area/centcom/evac)
+"KI" = (
+/obj/structure/shuttle/engine/propulsion/right{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/centcom/evac)
+"KJ" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/centcom/evac)
+"KK" = (
+/obj/structure/shuttle/engine/propulsion/left{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/centcom/evac)
+"KL" = (
+/obj/docking_port/stationary{
+ dir = 1;
+ dwidth = 1;
+ height = 4;
+ id = "pod4_away";
+ name = "recovery ship";
+ width = 3
+ },
+/turf/open/space,
+/area/space)
+"KM" = (
+/obj/docking_port/stationary{
+ dir = 1;
+ dwidth = 1;
+ height = 4;
+ id = "pod3_away";
+ name = "recovery ship";
+ width = 3
+ },
+/turf/open/space,
+/area/space)
+"KN" = (
+/obj/structure/window/reinforced,
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/centcom/evac)
+"KO" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/plating,
+/area/centcom/evac)
+"KP" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/centcom/evac)
+"KQ" = (
+/turf/open/floor/plating,
+/area/centcom/evac)
+"KR" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/centcom/evac)
+"KS" = (
+/turf/closed/wall/mineral/titanium/interior,
+/area/centcom/evac)
+"KU" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"KV" = (
+/turf/open/floor/mineral/titanium/yellow,
+/area/centcom/evac)
+"KW" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/toxin,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"KX" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/fire{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"KY" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"KZ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/centcom/evac)
+"La" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"Lb" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"Lc" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"Ld" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Le" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Lf" = (
+/obj/structure/table/reinforced,
+/obj/item/pen,
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Lg" = (
+/obj/structure/table/reinforced,
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Lh" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"Li" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"Lj" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Lk" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Ll" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Lm" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/stamp,
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Ln" = (
+/obj/structure/table,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Lo" = (
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Lp" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"Lq" = (
+/obj/structure/table,
+/obj/item/storage/box/handcuffs,
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Lr" = (
+/obj/machinery/door/window/northright{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Security Desk";
+ req_access_txt = "103"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/centcom/evac)
+"Ls" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 1;
+ height = 4;
+ id = "pod2_away";
+ name = "recovery ship";
+ width = 3
+ },
+/turf/open/space,
+/area/space)
+"Lt" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/centcom/evac)
+"Lu" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/centcom/evac)
+"Lv" = (
+/obj/structure/bed,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"Lw" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/centcom/evac)
+"Lx" = (
+/obj/structure/bed,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"Ly" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/mineral/titanium/yellow,
+/area/centcom/evac)
+"Lz" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 2;
+ height = 7;
+ id = "pod1_away";
+ name = "recovery ship";
+ width = 5
+ },
+/turf/open/space,
+/area/space)
+"LA" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LB" = (
+/obj/structure/table,
+/obj/item/hand_labeler,
+/obj/machinery/light,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LC" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LD" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Cockpit";
+ req_access_txt = "109"
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/centcom/evac)
+"LE" = (
+/obj/structure/table,
+/obj/item/device/radio/off,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LF" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "Prosecution"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LG" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LH" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LI" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LJ" = (
+/obj/structure/table,
+/obj/item/device/radio/off,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LK" = (
+/obj/machinery/abductor/experiment{
+ team_number = 2
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"LL" = (
+/obj/machinery/abductor/console{
+ team_number = 2
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"LM" = (
+/obj/machinery/abductor/pad{
+ team_number = 2
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"LN" = (
+/obj/structure/table,
+/obj/item/storage/lockbox,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LO" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LP" = (
+/obj/machinery/computer/shuttle{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LQ" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/pen,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LR" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/turf/open/floor/mineral/titanium/blue,
+/area/centcom/evac)
+"LS" = (
+/obj/machinery/computer/camera_advanced/abductor{
+ team_number = 2
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"LT" = (
+/obj/effect/landmark/abductor/scientist{
+ team_number = 2
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"LU" = (
+/obj/effect/landmark/abductor/agent{
+ team_number = 2
+ },
+/turf/open/floor/plating/abductor,
+/area/abductor_ship)
+"LV" = (
+/turf/closed/indestructible/riveted,
+/area/awaymission/errorroom)
+"LW" = (
+/turf/closed/mineral/ash_rock,
+/area/awaymission/errorroom)
+"LX" = (
+/obj/structure/speaking_tile,
+/turf/closed/mineral/ash_rock,
+/area/awaymission/errorroom)
+"LY" = (
+/obj/item/rupee,
+/turf/open/floor/plating/ashplanet/wateryrock{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
+ planetary_atmos = 0
+ },
+/area/awaymission/errorroom)
+"LZ" = (
+/turf/open/floor/plating/ashplanet/wateryrock{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
+ planetary_atmos = 0
+ },
+/area/awaymission/errorroom)
+"Ma" = (
+/obj/effect/landmark/error,
+/turf/open/floor/plating/ashplanet/wateryrock{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
+ planetary_atmos = 0
+ },
+/area/awaymission/errorroom)
+"Mb" = (
+/obj/structure/signpost/salvation{
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "ladder10";
+ invisibility = 100
+ },
+/turf/open/floor/plating/ashplanet/wateryrock{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
+ planetary_atmos = 0
+ },
+/area/awaymission/errorroom)
+"Mc" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"Md" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"Me" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"Mf" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"Mg" = (
+/obj/machinery/computer/crew{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/centcom/control)
+"Mh" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdome";
+ name = "Thunderdome Blast Door"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"Mi" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdomegen";
+ name = "General Supply"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tdome/arena)
+"My" = (
+/obj/docking_port/stationary{
+ area_type = /area/syndicate_mothership;
+ baseturf_type = /turf/open/floor/plating/asteroid/snow;
+ dheight = 1;
+ dir = 8;
+ dwidth = 12;
+ height = 17;
+ id = "syndicate_away";
+ name = "syndicate recon outpost";
+ roundstart_template = /datum/map_template/shuttle/infiltrator/basic;
+ turf_type = /turf/open/floor/plating/asteroid/snow;
+ width = 23
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"MD" = (
+/obj/effect/light_emitter{
+ set_cap = 1;
+ set_luminosity = 4
+ },
+/obj/structure/sign/warning/securearea{
+ desc = "A warning sign which reads 'FOURTH WALL'.";
+ name = "\improper FOURTH WALL";
+ pixel_x = -32
+ },
+/turf/open/floor/plating/asteroid/snow/airless,
+/area/syndicate_mothership)
+"ME" = (
+/obj/machinery/computer/camera_advanced{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/wizard_station)
+"Nk" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"NG" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"NU" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom";
+ opacity = 1;
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"Oj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom";
+ opacity = 1;
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"Un" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"UO" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"Wc" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"WJ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Administration";
+ opacity = 1;
+ req_access_txt = "102"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeadmin)
+"WQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"Xt" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel,
+/area/centcom/control)
+"Xy" = (
+/obj/machinery/door/airlock/external{
+ name = "Ferry Airlock";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
+"Yt" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/tdome/tdomeobserve)
+"ZJ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/evac)
+"ZX" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security";
+ opacity = 1;
+ req_access_txt = "101"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supply)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+gu
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kK
+lg
+lB
+lX
+mr
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kK
+lg
+lB
+lX
+mr
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kK
+lg
+lB
+lX
+mr
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kK
+lg
+lB
+lX
+mr
+aa
+aa
+LV
+LW
+LW
+LW
+LW
+LW
+LW
+LW
+LW
+LW
+LV
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ko
+kL
+lh
+lC
+lY
+ms
+nb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ko
+kL
+Be
+lC
+lY
+ms
+nb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ko
+kL
+JF
+lC
+lY
+ms
+nb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ko
+kL
+LS
+lC
+lY
+ms
+nb
+aa
+LV
+LW
+LY
+LY
+LY
+LZ
+LY
+LY
+LY
+LW
+LV
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kp
+kM
+li
+lD
+li
+mt
+nc
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kp
+Au
+li
+BQ
+li
+mt
+nc
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kp
+JA
+li
+JM
+li
+mt
+nc
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kp
+LK
+li
+LT
+li
+mt
+nc
+aa
+LV
+LW
+LY
+LY
+LY
+LZ
+LY
+LY
+LY
+LW
+LV
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kq
+kN
+li
+lE
+li
+mu
+nd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kq
+Av
+li
+lE
+li
+mu
+nd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kq
+JB
+li
+lE
+li
+mu
+nd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kq
+LL
+li
+lE
+li
+mu
+nd
+aa
+LV
+LW
+LY
+LY
+LY
+LZ
+LY
+LY
+LY
+LW
+LV
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kr
+kO
+li
+lF
+li
+mv
+ne
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kr
+Aw
+li
+BR
+li
+mv
+ne
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kr
+JC
+li
+JN
+li
+mv
+ne
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kr
+LM
+li
+LU
+li
+mv
+ne
+aa
+LV
+LW
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LW
+LV
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ks
+kP
+lj
+lG
+lj
+mw
+nf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ks
+kP
+lj
+lG
+lj
+mw
+nf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ks
+kP
+lj
+lG
+lj
+mw
+nf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ks
+kP
+lj
+lG
+lj
+mw
+nf
+aa
+LV
+LW
+LY
+LY
+LY
+LZ
+LZ
+LZ
+LZ
+LW
+LV
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kQ
+lk
+lH
+lZ
+mx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kQ
+lk
+lH
+lZ
+mx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kQ
+lk
+lH
+lZ
+mx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+kQ
+lk
+lH
+lZ
+mx
+aa
+aa
+LV
+LX
+LY
+LY
+LY
+LZ
+LZ
+Ma
+Mb
+LW
+LV
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LV
+LW
+LY
+LY
+LY
+LZ
+LZ
+LZ
+LZ
+LW
+LV
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fY
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LV
+LW
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LW
+LV
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LV
+LW
+LY
+LY
+LY
+LZ
+LY
+LY
+LY
+LW
+LV
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LV
+LW
+LY
+LY
+LY
+LZ
+LY
+LY
+LY
+LW
+LV
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LV
+LW
+LY
+LY
+LY
+LZ
+LY
+LY
+LY
+LW
+LV
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+fX
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LV
+LW
+LW
+LW
+LW
+LW
+LW
+LW
+LW
+LW
+LV
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+LV
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(18,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+Ax
+Ax
+Ax
+qE
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+qE
+qE
+yC
+zo
+zN
+zo
+Bf
+qE
+Ax
+Ax
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+ME
+vj
+ya
+qZ
+qZ
+qZ
+qZ
+qZ
+BS
+qZ
+qZ
+qE
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(21,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+uD
+wM
+vj
+qE
+qZ
+qZ
+qZ
+qZ
+qZ
+qE
+qZ
+uE
+qZ
+qE
+qE
+qE
+qE
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(22,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+vj
+vj
+vj
+vj
+qE
+yC
+zo
+qZ
+zo
+Bf
+qE
+qZ
+qZ
+qZ
+qE
+DL
+DZ
+Eh
+qE
+qE
+Ax
+qE
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(23,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+uC
+vk
+vj
+vj
+xu
+qE
+qE
+Ax
+Ax
+Ax
+qE
+qE
+Ci
+uE
+qZ
+DC
+DM
+DM
+Ei
+EC
+qZ
+qZ
+qE
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(24,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+qE
+qE
+uD
+vj
+vj
+vj
+xv
+qE
+yD
+qZ
+qZ
+qZ
+Bg
+qE
+qZ
+qZ
+qZ
+qE
+DN
+Ea
+Ej
+qE
+qE
+EC
+qE
+qE
+qE
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(25,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+rW
+sW
+qE
+qE
+qE
+wb
+qE
+qE
+qE
+yE
+qZ
+qZ
+qZ
+Bh
+qE
+qZ
+uE
+qZ
+qE
+qE
+qE
+qE
+qE
+qZ
+qZ
+FT
+Gr
+qE
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(26,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Ax
+qZ
+qZ
+qZ
+Ax
+qZ
+qZ
+qZ
+wN
+xw
+qE
+qZ
+qZ
+qZ
+qZ
+qZ
+Ax
+qZ
+qZ
+qZ
+qE
+DO
+Eb
+Ek
+qE
+EW
+qZ
+qZ
+Gr
+Gz
+GX
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(27,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Ax
+ra
+qZ
+qZ
+tX
+qZ
+qZ
+qZ
+qZ
+qZ
+yb
+qZ
+qZ
+zO
+Ay
+qZ
+BS
+qZ
+uE
+qZ
+DD
+uE
+Ec
+uE
+Ax
+EX
+qZ
+qZ
+Gr
+Gz
+GX
+lI
+lI
+HG
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(28,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Ax
+qZ
+qZ
+qZ
+Ax
+qZ
+qZ
+qZ
+wO
+xx
+qE
+qZ
+qZ
+qZ
+qZ
+qZ
+Ax
+qZ
+qZ
+qZ
+qE
+DP
+Ed
+El
+qE
+EW
+qZ
+qZ
+Gr
+Gz
+GX
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+rX
+sX
+qE
+qE
+qE
+wc
+qE
+qE
+qE
+yF
+qZ
+qZ
+qZ
+Bh
+qE
+qZ
+uE
+qZ
+qE
+qE
+qE
+qE
+qE
+EY
+qZ
+FT
+Gr
+qE
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+qE
+qE
+uE
+vl
+uE
+wP
+xy
+qE
+yG
+zp
+zP
+qZ
+qZ
+qE
+qZ
+qZ
+qZ
+qE
+DQ
+Ee
+Em
+qE
+qE
+Ax
+qE
+qE
+qE
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(31,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+uF
+vm
+wd
+uE
+xz
+qE
+qE
+Ax
+Ax
+Ax
+qE
+qE
+Ci
+uE
+qZ
+DE
+DR
+DR
+En
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(32,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+vn
+uE
+vl
+uE
+Ax
+yH
+yK
+zQ
+Az
+yK
+Ax
+qZ
+qZ
+qZ
+qE
+DS
+Ef
+Eo
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(33,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+uF
+wQ
+wd
+Ax
+yI
+zq
+yI
+AA
+yI
+Ax
+qZ
+uE
+qZ
+qE
+qE
+qE
+qE
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(34,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+vn
+uE
+Ax
+yJ
+zr
+yK
+zq
+yK
+Ax
+qZ
+qZ
+qE
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(35,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+qE
+qE
+yK
+zq
+yI
+AB
+Bi
+qE
+Ax
+Ax
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(36,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+qE
+qE
+qE
+qE
+qE
+qE
+qE
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(37,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(38,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(39,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mB
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(40,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(41,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(42,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(43,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(44,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(45,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(46,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(47,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+MD
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(48,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(49,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(50,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(51,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(52,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+my
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(53,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(54,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(55,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+nx
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(56,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(57,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+my
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(58,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(59,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(60,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(61,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+mz
+hl
+my
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(62,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+mA
+hl
+hl
+hl
+hl
+hl
+nx
+hl
+hl
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(63,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hl
+hl
+My
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(64,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+kt
+kt
+kt
+kt
+hl
+mz
+mA
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+kt
+kt
+nz
+uJ
+nz
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(65,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+ku
+ku
+ku
+ku
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+nz
+ll
+nz
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(66,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+kt
+hl
+hl
+hl
+hl
+hl
+mA
+hl
+kt
+kt
+kt
+kt
+kt
+nz
+uJ
+nz
+kt
+rd
+kt
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(67,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+kt
+hl
+hl
+mz
+hl
+hl
+hl
+kt
+kt
+ku
+ku
+ku
+ku
+ku
+ud
+ku
+ku
+ku
+ku
+kt
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(68,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+kt
+mz
+hl
+hl
+my
+hl
+hl
+oW
+ku
+ng
+qJ
+re
+se
+pZ
+pZ
+uL
+vu
+wl
+ku
+ku
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(69,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+ki
+kv
+kR
+lm
+ku
+kt
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+ku
+pX
+pZ
+pZ
+rf
+rf
+pZ
+rf
+vv
+wm
+si
+ku
+kt
+my
+nx
+hl
+mz
+hl
+hl
+BY
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(70,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+kt
+nz
+pY
+pZ
+rf
+sf
+te
+pZ
+rf
+vw
+wn
+wV
+ku
+kt
+hl
+mz
+hl
+hl
+hl
+BY
+Cp
+BY
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(71,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+pZ
+pZ
+rf
+sg
+tf
+pZ
+rf
+vv
+wn
+wW
+ku
+oW
+hl
+my
+mz
+nx
+hl
+hl
+BY
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(72,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ll
+ll
+ll
+ll
+ny
+ll
+ll
+ll
+ll
+pF
+qa
+pZ
+rg
+rf
+rf
+pZ
+pZ
+vx
+wo
+wX
+ku
+kt
+ma
+oW
+kt
+kt
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(73,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+ku
+nz
+nz
+nz
+ku
+ku
+ku
+ku
+ku
+ku
+qK
+pZ
+pZ
+pZ
+pZ
+pZ
+pZ
+pZ
+ku
+ku
+ku
+nz
+ku
+ku
+hh
+hh
+hh
+hh
+hh
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(74,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+kt
+mC
+nh
+ma
+kt
+ma
+ma
+kt
+kt
+ku
+qL
+pZ
+sh
+sh
+sh
+sh
+pZ
+pZ
+wY
+xG
+xG
+xG
+zx
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(75,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+lm
+ku
+kt
+mz
+hl
+hl
+mz
+hl
+hl
+mz
+ma
+ku
+qM
+pZ
+si
+tg
+tg
+uM
+pZ
+wp
+ku
+xG
+xG
+xG
+zx
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(76,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+kt
+hl
+hl
+mz
+hl
+mz
+hl
+hl
+pG
+ku
+ku
+rh
+ku
+ku
+ku
+nz
+uJ
+nz
+ku
+xH
+xG
+xG
+zx
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(77,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+kt
+hl
+mz
+hl
+mA
+hl
+hl
+mz
+kt
+ku
+qN
+ri
+ri
+ku
+ku
+nz
+ll
+nz
+ku
+xI
+xG
+xG
+zx
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(78,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kv
+kR
+ll
+ku
+ma
+hl
+hl
+hl
+mz
+hl
+hl
+mz
+ma
+ku
+qO
+ri
+sj
+ku
+ku
+nz
+ll
+nz
+ku
+xJ
+xG
+xG
+zx
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(79,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+ku
+ku
+ku
+ku
+kt
+hl
+mz
+mA
+hl
+hl
+mA
+hl
+pG
+nz
+qP
+rj
+ku
+ku
+ku
+nz
+ll
+nz
+ku
+xK
+xG
+yX
+zy
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(80,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+kt
+kt
+kt
+kt
+kt
+hl
+hl
+hl
+mA
+mz
+hl
+mA
+kt
+ku
+ku
+ku
+ku
+ku
+ku
+nz
+ll
+nz
+ku
+ku
+ku
+ku
+ku
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(81,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+mz
+hl
+hl
+hl
+mz
+ma
+hh
+aa
+ku
+sk
+sk
+sk
+nz
+ll
+nz
+sk
+sk
+sk
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(82,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+mz
+hl
+mA
+hl
+hh
+aa
+ku
+sk
+th
+ue
+nz
+uJ
+nz
+ue
+xL
+sk
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(83,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+mA
+hl
+hl
+mA
+hl
+mz
+hh
+aa
+ku
+sl
+ti
+tj
+tk
+vy
+tk
+tj
+xM
+yk
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(84,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+mz
+hl
+hl
+hl
+hh
+aa
+ku
+sm
+tj
+tk
+uf
+ug
+uf
+tk
+tj
+yl
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(85,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+ku
+sn
+tk
+uf
+ug
+uh
+ug
+uf
+tk
+ym
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(86,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+ku
+sm
+tl
+ug
+uN
+vz
+wq
+ug
+xN
+yl
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(87,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+ku
+sm
+tk
+uh
+ug
+uf
+ug
+uh
+tk
+yl
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(88,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+ku
+so
+tj
+tk
+uh
+ug
+uh
+tk
+tj
+yl
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(89,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+ku
+sp
+tn
+tj
+tk
+vy
+tk
+tj
+xO
+xP
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(90,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+ku
+sk
+sp
+ui
+ui
+ui
+ui
+ui
+xP
+sk
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(91,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+ku
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(92,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(93,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(94,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(95,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hl
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(96,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+hh
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(97,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KH
+KH
+KH
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(98,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KI
+KN
+KQ
+KQ
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(99,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KJ
+KN
+KR
+KQ
+KQ
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(100,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+ED
+ED
+ED
+ED
+ED
+ED
+ED
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KK
+KN
+KS
+KH
+KO
+KH
+KH
+KH
+KH
+KH
+KH
+KH
+KH
+KH
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(101,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+EZ
+EZ
+FU
+Gs
+GA
+GY
+Hi
+ED
+ED
+ED
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KH
+KH
+KS
+La
+Lb
+Ld
+Lj
+Ln
+Lq
+KH
+Lv
+Lv
+Lx
+Lv
+Lv
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(102,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fa
+Fa
+Fa
+Fh
+Fh
+Fh
+Fh
+Hy
+HH
+HH
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KH
+KU
+Lb
+KV
+Le
+Lk
+Lo
+Lo
+KH
+KV
+KV
+KV
+KV
+KV
+KH
+KH
+KH
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(103,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fb
+Fa
+FV
+FB
+Fh
+Fh
+Fh
+Hz
+HH
+HH
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KL
+KO
+KV
+KV
+KV
+Lf
+Ll
+Lo
+Lo
+KH
+Lv
+Lv
+KV
+Lv
+Lv
+KH
+LE
+LH
+LN
+Lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(104,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fc
+Fa
+EZ
+FB
+Fh
+Fh
+Fh
+Hz
+HH
+HH
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KH
+KW
+Lb
+KV
+Lg
+Lm
+Lg
+Lr
+Lt
+KH
+KH
+Ly
+KH
+KH
+KH
+Li
+Lb
+LO
+Lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(105,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fc
+Fa
+FW
+FB
+Fh
+Fh
+Fh
+Hy
+HH
+HH
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KP
+KX
+Lb
+KV
+KV
+KV
+KV
+KV
+Lu
+KV
+KV
+KV
+KV
+KV
+LD
+KV
+LI
+LP
+Lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(106,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fa
+Fa
+FX
+FB
+Fh
+Fh
+Hj
+ED
+ED
+ED
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KH
+KY
+Lb
+KV
+Lh
+Lb
+Li
+Li
+Lb
+Li
+Li
+KV
+Lb
+LA
+KH
+LF
+Lb
+LQ
+Lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(107,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fd
+FA
+FY
+FB
+Fh
+Fh
+Fh
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KM
+KO
+KV
+KV
+KV
+Lb
+Lb
+Lp
+Lp
+Lb
+Lp
+Lp
+KV
+Lb
+LB
+KH
+LG
+LJ
+LR
+Lw
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(108,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fe
+Fh
+Fh
+Fh
+Fh
+Fh
+Fh
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KH
+KU
+Lb
+KV
+KV
+KV
+KV
+KV
+KV
+KV
+KV
+KV
+Lb
+LC
+KH
+KH
+KH
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(109,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Ff
+Fh
+Fh
+Fh
+Fh
+Fh
+FB
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KH
+KH
+KS
+Lc
+Lb
+Li
+Li
+Li
+KV
+Li
+Li
+Li
+KV
+Lb
+KU
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(110,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fg
+Fh
+Fh
+Fh
+Fh
+FB
+Hk
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KI
+KN
+KS
+KH
+KO
+KH
+KH
+KH
+KO
+KH
+Lw
+KH
+KO
+KH
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(111,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fh
+FB
+Fh
+Fh
+Fh
+Fh
+FB
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KJ
+KN
+KZ
+KQ
+KQ
+KH
+aa
+aa
+Ls
+aa
+aa
+aa
+Lz
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(112,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fi
+Fi
+Fi
+Fi
+GB
+GB
+Hl
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KK
+KN
+KQ
+KQ
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(113,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fj
+Fi
+Fi
+Fi
+Fi
+GZ
+Hm
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+KH
+KH
+KH
+KH
+KH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(114,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fi
+Fi
+FZ
+Fi
+Fi
+GZ
+Hm
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(115,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fk
+FC
+Fi
+Gt
+Fi
+GZ
+Hm
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(116,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fi
+Fi
+Ga
+Fi
+Fi
+Ha
+Hm
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(117,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+Fl
+Fi
+Fj
+Fi
+Fi
+GZ
+Hm
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(118,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ED
+ED
+ED
+ED
+ED
+ED
+ED
+ED
+ED
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(119,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(120,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(121,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+hH
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(122,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(123,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(124,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(125,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(126,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(127,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(128,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(129,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(130,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(131,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(132,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(133,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+oe
+oe
+nT
+nU
+oe
+oe
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(134,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+oe
+rk
+sq
+to
+uj
+oe
+aa
+aa
+xb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(135,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+rl
+sr
+tp
+uk
+mD
+aa
+oe
+xc
+oe
+aa
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(136,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+oe
+rm
+ss
+tq
+ul
+mD
+vA
+oe
+xd
+oe
+yn
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(137,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+oe
+rn
+st
+tr
+um
+nT
+vB
+oe
+Xy
+oe
+vB
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(138,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+nU
+ro
+su
+ts
+un
+nU
+vC
+wr
+xe
+wr
+yo
+nU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(139,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+oe
+rp
+su
+ts
+sw
+uO
+vD
+ws
+xf
+ws
+yp
+oe
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(140,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+rq
+sv
+tt
+uo
+mD
+vE
+wt
+xg
+wt
+yq
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(141,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+mD
+mD
+tu
+mD
+mD
+mD
+wu
+xh
+wu
+mD
+mD
+oe
+oe
+nU
+oe
+oe
+mD
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(142,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+oe
+oe
+mD
+oe
+oe
+mD
+rr
+sw
+tv
+sw
+uP
+mD
+wv
+wv
+wv
+mD
+yY
+zz
+oA
+zc
+Bu
+BZ
+Cq
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(143,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+of
+oA
+oX
+pH
+qb
+mD
+rs
+sw
+pR
+sw
+uQ
+mD
+WQ
+xh
+WQ
+mD
+yZ
+pg
+pg
+pg
+pg
+pg
+Cr
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(144,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+og
+oB
+oY
+oB
+qc
+mD
+mD
+mD
+mD
+mD
+qR
+mD
+ww
+xi
+wz
+qR
+za
+pg
+Ab
+AJ
+Bv
+pg
+Cs
+qR
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(145,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+oh
+oC
+oZ
+oB
+qd
+nU
+rt
+sx
+tx
+up
+uR
+mD
+ss
+xj
+tr
+nU
+zb
+pg
+Ac
+AK
+Bw
+pg
+Ct
+nT
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(146,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+oi
+oD
+pa
+pI
+oF
+qQ
+qh
+sy
+ty
+uq
+uS
+mD
+ss
+ws
+tr
+rz
+zc
+zA
+tw
+zA
+tw
+zA
+Cu
+nU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(147,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+ni
+nA
+mD
+oj
+oE
+pb
+pJ
+qe
+mD
+ru
+pJ
+oB
+oB
+uT
+nT
+wx
+ws
+wB
+yr
+sw
+tw
+Ad
+AL
+Bx
+tw
+Cv
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(148,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mE
+nj
+nB
+nS
+ok
+oF
+oF
+pK
+qf
+nU
+rv
+sz
+tz
+ur
+uU
+vF
+wy
+ws
+xQ
+nT
+sw
+zB
+Ae
+AM
+By
+Ca
+Cw
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Ep
+Ep
+Ep
+Ep
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(149,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ga
+gg
+gg
+gg
+gg
+gg
+gg
+gg
+gg
+gg
+gv
+hb
+gk
+gk
+gk
+gk
+gk
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+gk
+gk
+gk
+gk
+gk
+hb
+ga
+gg
+gg
+gg
+gg
+gg
+gg
+gg
+gg
+gg
+gv
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+nk
+nC
+mD
+ol
+oG
+pc
+oI
+qg
+mE
+rw
+sA
+tA
+oB
+uV
+rz
+wz
+ws
+xR
+yr
+sw
+zC
+Af
+AN
+Bz
+Cb
+Cx
+mD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Ep
+EG
+EH
+Ev
+Iw
+IR
+Jd
+Jn
+IR
+Iw
+IR
+Jd
+Jn
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(150,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gw
+fZ
+gk
+gl
+gl
+gl
+gk
+gj
+gk
+gk
+gk
+gk
+gk
+gj
+gk
+gl
+gl
+gl
+gk
+fZ
+gb
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+mD
+mD
+nT
+om
+oH
+pd
+pL
+qh
+qQ
+rx
+sB
+tB
+us
+uW
+mD
+su
+ws
+ts
+rz
+zd
+zB
+Ag
+AO
+BA
+Ca
+Cy
+mD
+aa
+aa
+aa
+aa
+aa
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ev
+Ev
+Ep
+Iv
+Iv
+IR
+IR
+Iv
+Iv
+Iv
+IR
+IR
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(151,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gw
+fZ
+gk
+gl
+gk
+gk
+gk
+gj
+gk
+gk
+hC
+gk
+gk
+gj
+gk
+gk
+gk
+gl
+gk
+fZ
+gb
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+nU
+on
+oI
+pe
+pM
+qi
+mD
+ry
+sC
+tC
+oB
+uX
+mD
+su
+ws
+ts
+mD
+zc
+tw
+Ah
+AP
+Ah
+tw
+Cz
+mD
+aa
+aa
+aa
+aa
+aa
+Ep
+Fm
+FD
+Gb
+Ep
+GC
+Hb
+Hn
+HA
+HI
+Ep
+HZ
+Ih
+Gv
+Ix
+IS
+Je
+Jo
+IS
+WJ
+IS
+JG
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(152,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gw
+fZ
+gk
+gl
+gk
+gk
+gk
+gj
+gk
+hC
+hD
+hC
+gk
+gj
+gk
+gk
+gk
+gl
+gk
+fZ
+gb
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+jC
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+mD
+mE
+oJ
+mD
+mD
+mD
+mD
+rz
+sD
+mD
+nU
+mD
+mD
+su
+ws
+ts
+qR
+pH
+zA
+tw
+zA
+tw
+zA
+CA
+mD
+aa
+aa
+aa
+aa
+aa
+Ep
+Fn
+FE
+Gc
+Gu
+Gc
+Gc
+Gc
+Gc
+Gc
+HS
+FI
+FL
+Gv
+Ix
+IS
+Jf
+Jp
+IS
+WJ
+IS
+JG
+JG
+Iv
+Kg
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(153,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gw
+fZ
+gk
+gl
+gk
+gk
+gk
+gj
+gk
+gk
+hC
+gk
+gk
+gj
+gk
+gk
+gk
+gl
+gk
+fZ
+gb
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iX
+jk
+jr
+iX
+jr
+jI
+iX
+aa
+aa
+aa
+aa
+iX
+iX
+mF
+jE
+iF
+mD
+oo
+oI
+pf
+pN
+qj
+nU
+rr
+sE
+tD
+mD
+uY
+oe
+su
+ws
+ts
+mD
+nT
+rz
+Ai
+Ai
+Ai
+rz
+nU
+mD
+aa
+aa
+aa
+aa
+aa
+Ep
+Fo
+FF
+Gd
+Ep
+GD
+GD
+GD
+GD
+GD
+Ep
+FH
+Ge
+Ep
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+JG
+JG
+JG
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(154,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gw
+fZ
+gk
+gl
+gl
+gl
+gk
+gj
+gk
+gk
+gk
+gk
+gk
+gj
+gk
+gl
+gl
+gl
+gk
+fZ
+gb
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+jb
+jl
+js
+iX
+js
+jJ
+jb
+aa
+aa
+aa
+aa
+iX
+mb
+mG
+nl
+nD
+mD
+op
+oK
+pg
+pg
+qk
+qR
+rA
+sF
+tE
+nU
+uZ
+oe
+su
+ws
+ts
+mD
+ze
+zD
+sw
+sw
+sw
+zD
+CB
+mD
+aa
+aa
+aa
+aa
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+FI
+FL
+Ep
+Iy
+Iy
+Iy
+Iy
+Iy
+Iy
+Iv
+JG
+JO
+JG
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(155,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gc
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gx
+hb
+gk
+gk
+gk
+gk
+gk
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+gk
+gk
+gk
+gk
+gk
+hb
+gc
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gx
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iF
+iN
+iX
+iX
+jm
+jr
+iX
+jr
+jK
+iX
+iX
+iX
+iX
+iN
+iF
+mc
+mH
+nm
+nE
+mD
+oq
+oL
+ph
+pO
+ql
+nT
+rB
+sG
+tF
+mD
+uY
+oe
+su
+xf
+ts
+mD
+zf
+sw
+tw
+tw
+tw
+sw
+CC
+mD
+aa
+aa
+aa
+aa
+Ep
+EE
+Ep
+FG
+FN
+Gv
+ER
+Hc
+Fp
+Hc
+Fp
+HT
+Ia
+Ge
+Ep
+Iz
+Iz
+Iz
+Iz
+Iz
+Iz
+Iv
+Iv
+Iv
+JX
+JX
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(156,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+hb
+hb
+hb
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+hb
+hb
+hb
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iF
+iO
+iO
+jc
+jn
+iP
+jy
+jD
+jL
+jO
+jO
+jO
+iO
+iO
+iX
+md
+iR
+nn
+nF
+mD
+nT
+nU
+mD
+mD
+mD
+mD
+mD
+sH
+rz
+mD
+oe
+qR
+wA
+ws
+ts
+mD
+zg
+sw
+Aj
+AQ
+BB
+sw
+CD
+mD
+aa
+aa
+aa
+aa
+Eq
+EF
+Eq
+FH
+Ge
+Gv
+GE
+Fw
+Fq
+Fw
+Fq
+Fw
+Fq
+FM
+Ep
+IA
+IT
+IT
+IT
+IT
+Ju
+JD
+JH
+Iv
+JG
+JG
+Iv
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(157,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iF
+iP
+iP
+jd
+jo
+jt
+jt
+jt
+jM
+jP
+kj
+kj
+jD
+jD
+iX
+me
+mI
+lo
+nG
+mF
+or
+oM
+pi
+pP
+qm
+nU
+rC
+sI
+tG
+mD
+va
+oe
+su
+ws
+ts
+mD
+zh
+sw
+Ak
+AR
+BC
+sw
+CE
+mD
+aa
+aa
+aa
+aa
+Ep
+Ev
+Ep
+FI
+Gf
+Ep
+Ep
+FK
+Ep
+Ep
+EK
+Gw
+EK
+Ep
+Ep
+IB
+IU
+IV
+IV
+IU
+Jv
+JD
+JH
+Iv
+JG
+JG
+IR
+KA
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(158,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gk
+gk
+gk
+gw
+gj
+gb
+gk
+gk
+gk
+gw
+gj
+gb
+gk
+gl
+gk
+gw
+fZ
+gk
+gh
+gh
+gh
+gk
+fZ
+gb
+gh
+gl
+gh
+gw
+gj
+gb
+gh
+gh
+gh
+gw
+gj
+gb
+gh
+gh
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iF
+iQ
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+ln
+iN
+mf
+iR
+lo
+nH
+jE
+mg
+mi
+pj
+nm
+qm
+qR
+rD
+sJ
+tH
+mD
+vb
+oe
+su
+xk
+ts
+mD
+zi
+sw
+tw
+tw
+tw
+sw
+CF
+nT
+aa
+aa
+aa
+aa
+Ep
+EG
+Ev
+FH
+Ge
+Ep
+GF
+GM
+Ho
+HB
+HJ
+HU
+Ib
+Ii
+Ep
+IB
+IV
+Jg
+IV
+IV
+Jv
+JD
+JH
+Iv
+JG
+JG
+IR
+KB
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(159,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gl
+gl
+gl
+gw
+gj
+gb
+gl
+gl
+gl
+gw
+gj
+gb
+gl
+gl
+gl
+gw
+fZ
+gk
+fZ
+gl
+fZ
+gk
+fZ
+gb
+gl
+gl
+gl
+gw
+gj
+gb
+gl
+gl
+gl
+gw
+gj
+gb
+gl
+gl
+gl
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iG
+iR
+iY
+je
+iO
+iY
+iO
+iY
+iO
+iY
+iO
+kw
+iY
+lo
+lJ
+mg
+iR
+lo
+mg
+lJ
+mg
+iR
+iY
+lo
+mg
+nT
+rE
+sw
+tI
+mD
+va
+oe
+wB
+xi
+xS
+mD
+zj
+zE
+Al
+AS
+BD
+zE
+CG
+mD
+aa
+aa
+aa
+aa
+Ep
+EH
+Ev
+FI
+FL
+EK
+GG
+Gc
+Hd
+Gc
+Hd
+Gc
+Hd
+Ij
+Ep
+IB
+IU
+IV
+IV
+IU
+Jv
+JD
+JH
+Iv
+JG
+JG
+IR
+KA
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(160,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gk
+gl
+gk
+gw
+gj
+gb
+gk
+gl
+gk
+gw
+gj
+gb
+gk
+gl
+gk
+gw
+fZ
+gk
+gh
+gh
+gh
+gk
+fZ
+gb
+gh
+gl
+gh
+gw
+gj
+gb
+gh
+gl
+gh
+gw
+gj
+gb
+gh
+gl
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iG
+iR
+iY
+je
+jp
+iY
+jp
+iY
+jp
+iY
+jp
+kw
+iY
+lo
+iF
+mh
+mJ
+lq
+nI
+iF
+os
+iR
+iY
+lo
+qn
+mD
+mD
+mD
+mD
+mD
+mD
+mD
+wu
+xh
+wu
+mD
+nT
+rz
+mD
+mD
+mD
+rz
+nU
+mD
+Dq
+io
+io
+io
+Ep
+Ev
+Ep
+FH
+Ge
+Ep
+GH
+Hd
+Gc
+HC
+Gc
+Hd
+Gc
+Ik
+Ep
+IC
+IW
+IW
+IW
+IW
+Jw
+JD
+JH
+Iv
+JY
+JY
+Iv
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(161,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iF
+iR
+iY
+je
+jp
+iY
+jp
+iY
+jp
+iY
+jp
+kw
+iY
+lo
+jE
+iF
+iF
+lJ
+iF
+iN
+ot
+mI
+iY
+nn
+qo
+iN
+iF
+iF
+rK
+mQ
+io
+vG
+vG
+vG
+vG
+vG
+io
+rK
+mQ
+io
+io
+io
+qw
+iu
+ut
+iu
+lN
+iu
+Er
+EI
+Fp
+FJ
+Gg
+EK
+GI
+Gc
+Hp
+Gy
+HK
+HV
+Ic
+Ep
+Ep
+ID
+ID
+ID
+ID
+ID
+ID
+Iv
+Iv
+Iv
+Iv
+Kh
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(162,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+gk
+gk
+gk
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iG
+iR
+iY
+je
+jp
+iY
+jp
+iY
+jp
+iY
+jp
+kw
+iY
+lp
+iF
+mi
+kj
+kj
+nm
+iF
+ou
+iR
+iY
+lo
+oM
+iF
+rF
+iF
+iu
+iu
+io
+im
+Oj
+mk
+Oj
+im
+io
+iu
+iu
+io
+mQ
+io
+iu
+im
+Dr
+ip
+iu
+io
+Es
+EJ
+Fq
+Fw
+Gh
+Ep
+GJ
+Hd
+Hq
+Gx
+HL
+HW
+HW
+Il
+Is
+IE
+IX
+Jh
+Jh
+Js
+IE
+Is
+JI
+JP
+JZ
+JY
+Kn
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(163,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iG
+iR
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+iY
+lo
+lK
+iR
+iY
+iY
+lo
+lK
+mg
+oN
+iZ
+lq
+qp
+iF
+iX
+iF
+tJ
+tK
+mR
+vH
+tK
+xl
+xT
+ys
+mR
+zF
+Am
+tP
+iu
+io
+rN
+CX
+lS
+DF
+DT
+io
+Ep
+EK
+Ep
+FK
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+HM
+HW
+HN
+Il
+It
+It
+It
+It
+It
+It
+It
+It
+JI
+JQ
+Ka
+Ki
+Ko
+KC
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(164,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gk
+gl
+gk
+gw
+gB
+gb
+gk
+gl
+gk
+gw
+gk
+gk
+gh
+fZ
+gh
+gk
+gk
+gk
+gl
+hC
+gl
+gk
+gk
+gk
+gh
+fZ
+gh
+gk
+gk
+gb
+gh
+gl
+gh
+gw
+gB
+gb
+gh
+gl
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iF
+iS
+iZ
+jf
+jq
+ju
+ju
+iZ
+jN
+jQ
+jN
+jf
+iZ
+lq
+iF
+mj
+jf
+iZ
+nJ
+iF
+ov
+oO
+pk
+mg
+qq
+qS
+rG
+ZX
+tK
+nq
+mR
+nq
+np
+nq
+nq
+nq
+mR
+nq
+zF
+Xt
+ut
+NG
+ly
+jA
+jA
+jA
+DU
+io
+Et
+EL
+Ev
+Fq
+Gi
+Ep
+GK
+GP
+GK
+Ep
+HN
+HW
+HN
+Il
+Iu
+IF
+IF
+IF
+IF
+IF
+IF
+Iu
+JI
+JQ
+Ka
+Ki
+Kp
+IR
+KG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(165,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gl
+gl
+gl
+gw
+gB
+gb
+gl
+gl
+gl
+gw
+gk
+gk
+gh
+gl
+gh
+gk
+gk
+gk
+hC
+hE
+hC
+gk
+gk
+gk
+gh
+gl
+gh
+gk
+gk
+gb
+gl
+gl
+gl
+gw
+gB
+gb
+gl
+gl
+gl
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+iF
+iF
+iN
+iF
+iF
+iF
+iF
+jE
+iF
+iF
+iF
+iF
+iN
+iF
+iF
+iF
+iF
+no
+iF
+iF
+iN
+iX
+pl
+pQ
+iX
+iF
+iX
+iF
+tL
+tL
+iu
+iu
+wC
+iu
+iu
+iu
+in
+tL
+tL
+io
+iu
+io
+CH
+vM
+Ds
+DG
+Mf
+im
+Eu
+EM
+Fr
+FL
+Gj
+Ep
+Ev
+Ev
+Ev
+Ep
+HO
+HW
+Id
+Il
+It
+IG
+IG
+IG
+IG
+IG
+IG
+It
+JI
+JR
+JY
+Ki
+Kq
+IR
+KA
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(166,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gk
+gl
+gk
+gw
+gB
+gb
+gk
+gl
+gk
+gw
+gk
+gk
+gh
+fZ
+gh
+gk
+gk
+gk
+gl
+hC
+gl
+gk
+gk
+gk
+gh
+fZ
+gh
+gk
+gk
+gb
+gh
+gl
+gh
+gw
+gB
+gb
+gh
+gl
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+lL
+iu
+mK
+np
+nK
+nV
+ow
+oP
+np
+nK
+qr
+io
+rH
+io
+tK
+nq
+iu
+vI
+iC
+xm
+xU
+yt
+iu
+nq
+xT
+iu
+rK
+io
+io
+iu
+Dt
+DH
+iu
+in
+Ev
+EN
+Ev
+FL
+FI
+Ep
+GL
+He
+Hr
+Ep
+HN
+HW
+HN
+Il
+It
+IH
+IH
+IH
+IH
+IH
+IH
+It
+JI
+JQ
+Ka
+Ki
+Kr
+Iv
+IR
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(167,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+io
+io
+mL
+nq
+nq
+nq
+nq
+nq
+nq
+nq
+qs
+in
+io
+in
+tK
+nq
+io
+vJ
+ly
+kl
+xV
+yu
+iu
+nq
+An
+in
+io
+in
+CI
+CY
+wH
+np
+oQ
+iu
+Ew
+Ey
+Fs
+FM
+Gk
+Ep
+Ev
+Ev
+Ev
+Ep
+HN
+HW
+HN
+Il
+It
+IH
+IH
+IH
+IH
+IH
+IH
+It
+JI
+JQ
+Ka
+Ki
+Kc
+IR
+KA
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(168,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+gk
+gk
+gk
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+fZ
+gj
+gj
+gj
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+lM
+mk
+mM
+nq
+nq
+nq
+nq
+nq
+nq
+nq
+qs
+iu
+rI
+mk
+tK
+nq
+iu
+vK
+wD
+km
+nN
+yv
+im
+nq
+xT
+iu
+BE
+mk
+CJ
+nq
+nq
+nq
+DV
+iu
+Ex
+EO
+EO
+EO
+Gl
+Gw
+GM
+GM
+Hs
+Gy
+HN
+HW
+HN
+Il
+It
+IH
+IH
+Ji
+Ji
+IH
+IH
+It
+JI
+JR
+JY
+Ki
+Ks
+IR
+KG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(169,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+gk
+gk
+gk
+gk
+gk
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+ga
+gg
+gg
+gg
+gv
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lr
+lM
+lr
+mN
+nq
+nq
+nW
+ox
+oQ
+nq
+nq
+qt
+qT
+rI
+NU
+tM
+nq
+iu
+vL
+wE
+km
+km
+Me
+iu
+nq
+nq
+qT
+BE
+NU
+wH
+nq
+np
+nq
+wH
+Eg
+Ey
+EO
+Ft
+EO
+Gm
+Un
+GN
+GN
+GN
+Nk
+HL
+HW
+HN
+Il
+It
+IH
+IH
+Jj
+Jq
+IH
+IH
+It
+JI
+JS
+Kb
+Ki
+Kt
+KD
+IR
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(170,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gk
+gl
+gk
+gw
+gj
+gb
+gk
+gl
+gk
+gw
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+gk
+gh
+gh
+gh
+gk
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+gb
+gh
+gl
+gh
+gw
+gj
+gb
+gh
+gl
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+lM
+iu
+mM
+nq
+nq
+nq
+nq
+nq
+nq
+nq
+qs
+mk
+rI
+iu
+tN
+nq
+iu
+vM
+wF
+km
+nN
+yw
+im
+nq
+xo
+mk
+BE
+iu
+CK
+nq
+nq
+nq
+DW
+iu
+Ez
+EO
+EO
+EO
+Gl
+Gy
+GM
+GM
+Hs
+Ep
+HN
+HW
+HN
+Il
+It
+IH
+IH
+Ji
+Ji
+IH
+IH
+It
+JI
+JT
+JY
+Ki
+Ku
+IR
+KG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(171,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gl
+gl
+gl
+gw
+gj
+gb
+gl
+gl
+gl
+gw
+gQ
+gQ
+gQ
+gQ
+gQ
+gQ
+fZ
+gk
+fZ
+gl
+fZ
+gk
+fZ
+gQ
+gQ
+gQ
+gQ
+gQ
+gQ
+gb
+gl
+gl
+gl
+gw
+gj
+gb
+gl
+gl
+gl
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+io
+io
+mO
+nq
+nq
+nq
+nq
+nq
+nq
+nq
+qs
+in
+io
+in
+tN
+nq
+io
+vN
+ly
+kl
+xW
+yx
+iu
+nq
+Ao
+in
+io
+in
+CL
+CZ
+wH
+np
+nW
+iu
+EA
+Ey
+Fu
+FN
+Gk
+Ep
+Ev
+Ev
+Ev
+Ep
+HN
+HW
+HN
+Il
+It
+IH
+IH
+IH
+IH
+IH
+IH
+It
+JI
+JQ
+Ka
+Ki
+Kc
+IR
+KA
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(172,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gb
+gk
+gk
+gk
+gw
+gj
+gb
+gk
+gk
+gk
+gw
+fZ
+fZ
+fZ
+gQ
+fZ
+gB
+fZ
+gk
+gh
+gh
+gh
+gk
+fZ
+gB
+fZ
+gQ
+fZ
+fZ
+fZ
+gb
+gh
+gh
+gh
+gw
+gj
+gb
+gh
+gh
+gh
+gw
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+lN
+iu
+mP
+nr
+nL
+nX
+oy
+nX
+nL
+nr
+qu
+io
+rJ
+iu
+tN
+nq
+iu
+rN
+iC
+xn
+xX
+nw
+iu
+nq
+xo
+iu
+mQ
+io
+io
+iu
+Du
+DI
+iu
+in
+Ev
+EN
+Ev
+FL
+FP
+Ep
+GO
+He
+Ht
+Ep
+HN
+HW
+HN
+Il
+It
+IH
+IH
+IH
+IH
+IH
+IH
+It
+JI
+JQ
+Ka
+Ki
+Kv
+Iv
+IR
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(173,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+gk
+gk
+gk
+gk
+gk
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+gc
+gi
+gi
+gi
+gx
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+iu
+io
+iu
+yU
+mk
+yU
+iu
+io
+iu
+io
+iu
+io
+tL
+tL
+iu
+iu
+wC
+iu
+iu
+iu
+in
+tL
+tL
+io
+iu
+io
+CM
+Da
+Dv
+DJ
+Mg
+im
+Eu
+EP
+Fr
+FL
+Gn
+Ep
+Ev
+Ev
+Ev
+Ep
+HO
+HW
+Id
+Il
+It
+II
+II
+II
+II
+II
+II
+It
+JI
+JR
+JY
+Ki
+Kw
+IR
+KG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(174,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+gJ
+gJ
+gJ
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+gB
+fZ
+fZ
+gk
+gk
+gk
+fZ
+fZ
+gB
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+fZ
+gP
+fZ
+fZ
+fZ
+fZ
+gh
+gh
+gh
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+il
+iq
+iA
+iH
+iq
+iA
+iH
+iq
+iA
+iH
+iq
+iA
+iH
+iq
+iA
+iH
+iq
+iA
+il
+mQ
+io
+nM
+nM
+nM
+nM
+nM
+io
+mQ
+iu
+rK
+iu
+tN
+nq
+mR
+nq
+np
+nq
+nq
+nq
+mR
+nq
+zG
+Xt
+ut
+NG
+ly
+jA
+jA
+jA
+DX
+io
+Et
+EQ
+Ev
+Fv
+Go
+Ep
+GP
+GK
+GP
+Ep
+HM
+HW
+HN
+Il
+Iu
+IF
+IF
+IF
+IF
+IF
+IF
+Iu
+JI
+JQ
+Ka
+Ki
+Kx
+IR
+KA
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(175,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+gh
+gC
+gD
+gK
+gO
+gS
+gW
+fZ
+fZ
+fZ
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+fZ
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+il
+ir
+iB
+iI
+ir
+iB
+il
+ir
+iB
+il
+ir
+iB
+il
+ir
+iB
+iI
+ir
+iB
+il
+in
+im
+iu
+Oj
+mk
+Oj
+iu
+io
+io
+io
+io
+io
+tO
+tN
+mR
+vO
+tN
+xo
+xo
+yy
+mR
+zG
+Ap
+AT
+iu
+io
+CN
+Db
+lS
+ns
+DY
+io
+Ep
+EK
+Ep
+FK
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+HN
+HW
+HN
+Il
+It
+It
+It
+It
+It
+It
+It
+It
+JI
+JQ
+Ka
+Ki
+Ky
+KC
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(176,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+gh
+gC
+gE
+gk
+gi
+gk
+gX
+gF
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+im
+is
+iC
+iJ
+iT
+iT
+jg
+iT
+iT
+jz
+iT
+iT
+jR
+iT
+iT
+kS
+ls
+iC
+kZ
+mR
+kW
+iL
+iT
+iT
+iT
+ls
+iu
+lN
+io
+io
+io
+tP
+UO
+io
+im
+yU
+mk
+yU
+im
+io
+iu
+iu
+io
+rK
+io
+iu
+im
+iC
+ip
+iu
+io
+Er
+ER
+Fv
+Fp
+Gp
+Ep
+GQ
+Hf
+Hu
+Gx
+HL
+HW
+HW
+Il
+Is
+IJ
+IY
+Jk
+Jk
+Jt
+IJ
+Is
+JI
+JP
+Kc
+JY
+Kn
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(177,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+gh
+gC
+gF
+gL
+gk
+gT
+gC
+fZ
+go
+fZ
+gh
+gh
+gh
+fZ
+fZ
+gB
+gB
+gB
+fZ
+fZ
+gh
+gh
+gh
+fZ
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+in
+it
+iC
+iK
+iU
+iU
+iU
+iU
+jv
+iC
+jF
+iU
+iU
+iU
+iU
+iU
+lt
+iC
+kZ
+mR
+iC
+iK
+iU
+iU
+jv
+jG
+iu
+qv
+io
+io
+rK
+iu
+ut
+io
+vP
+vP
+vP
+vP
+vP
+io
+rK
+mQ
+io
+io
+io
+lL
+iu
+iC
+iu
+qv
+iu
+Es
+ES
+Fw
+FO
+Gg
+EK
+GR
+Hf
+Hv
+Gy
+HP
+HP
+Ic
+Ep
+Ep
+Mh
+Mh
+Mh
+Mh
+Mh
+Mh
+Iv
+Iv
+Iv
+Iv
+Kh
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(178,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gF
+gh
+gh
+gh
+gC
+fZ
+go
+gB
+gh
+hj
+gh
+gk
+gj
+gk
+gj
+gk
+gj
+gk
+gh
+hj
+gh
+gB
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+iu
+iu
+im
+iu
+ja
+iu
+iu
+jw
+jA
+jG
+iu
+iu
+ja
+iu
+im
+iu
+iu
+io
+iu
+ja
+iu
+iu
+iu
+jw
+pm
+im
+iu
+io
+io
+iu
+im
+yj
+io
+im
+Oj
+mk
+Oj
+im
+io
+iu
+iu
+ip
+im
+io
+io
+io
+lT
+io
+io
+io
+Ep
+Ev
+Ep
+FH
+Gq
+Ep
+GS
+Hf
+Hf
+HD
+Hf
+Hf
+Hf
+Io
+Ep
+IL
+IZ
+IZ
+IZ
+IZ
+Jx
+JD
+JL
+Iv
+JY
+JY
+Iv
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(179,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gn
+gm
+gn
+fZ
+fZ
+gG
+gM
+gh
+gU
+gY
+fZ
+go
+gB
+gh
+hj
+gh
+gj
+gk
+gj
+gk
+gj
+gk
+gj
+gh
+hj
+gh
+gB
+go
+gB
+gI
+gN
+gQ
+gV
+ha
+fZ
+fZ
+gn
+gm
+gn
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+iv
+iD
+iD
+iV
+iC
+jh
+iu
+jw
+jA
+jG
+iu
+jS
+iC
+kx
+kT
+lu
+lO
+im
+mS
+iC
+nN
+nY
+iu
+jw
+jG
+iu
+qv
+iu
+rL
+sK
+iC
+uu
+io
+vQ
+wG
+xp
+wG
+qr
+im
+zH
+Aq
+AU
+BF
+iu
+lL
+iu
+iC
+io
+qw
+lL
+Ep
+ET
+Ev
+FP
+FL
+EK
+GT
+Hf
+Hf
+Hf
+Hf
+Hf
+Hf
+Ip
+Ep
+IM
+Ja
+Jb
+Jb
+Ja
+Jy
+JD
+JL
+Iv
+JG
+JG
+IR
+KA
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(180,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gn
+gm
+gn
+fZ
+fZ
+gE
+gk
+gi
+gk
+gX
+fZ
+go
+gB
+gh
+hj
+gh
+gk
+gj
+gk
+gj
+gk
+gj
+gk
+gh
+hj
+gh
+gB
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gn
+gm
+gn
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ip
+iw
+iC
+iC
+iC
+iC
+ji
+im
+jw
+jA
+jG
+im
+jT
+iC
+iC
+iC
+iC
+iC
+kZ
+ly
+jA
+km
+nZ
+im
+jw
+jG
+iu
+lN
+iu
+rM
+sK
+mX
+nw
+vc
+mO
+nq
+nq
+nq
+qs
+vc
+zI
+nq
+Ar
+BG
+iu
+qw
+iu
+jA
+io
+iu
+iu
+Ep
+EU
+Ev
+FH
+Gq
+Ep
+GU
+GM
+Hw
+HE
+HQ
+HX
+Ie
+Iq
+Ep
+IM
+Jb
+Jl
+Jb
+Jb
+Jy
+JD
+JL
+Iv
+JG
+JG
+IR
+KB
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(181,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gF
+gL
+gk
+gT
+gC
+fZ
+go
+fZ
+gh
+hj
+gh
+fZ
+gl
+hj
+hj
+hj
+gl
+fZ
+gh
+hj
+gh
+fZ
+go
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+ix
+iE
+iE
+iW
+iC
+jh
+iu
+jw
+jA
+jG
+iu
+jU
+iC
+ky
+kU
+lv
+lP
+im
+mT
+iC
+nN
+oa
+iu
+jw
+jG
+iu
+qv
+iu
+rN
+sK
+Md
+uv
+iu
+vR
+nq
+nq
+nq
+yz
+iu
+zI
+Ar
+nq
+BH
+iu
+qv
+iu
+jA
+io
+Dw
+iC
+Ep
+Ev
+Ep
+FP
+Gf
+Ep
+Ep
+FK
+Ep
+Ep
+EK
+Ep
+EK
+Ep
+Ep
+IM
+Ja
+Jb
+Jb
+Ja
+Jy
+JD
+JL
+Iv
+JG
+JG
+IR
+KA
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(182,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+gh
+gC
+gF
+gh
+gh
+gh
+gC
+gl
+go
+gl
+gh
+hj
+gh
+gB
+hj
+hj
+hj
+hj
+hj
+gB
+gh
+hj
+gh
+gl
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+iu
+iu
+im
+iu
+ja
+iu
+iu
+jw
+jA
+jG
+iu
+iu
+ja
+iu
+im
+iu
+iu
+io
+iu
+ja
+iu
+iu
+iu
+jw
+pm
+im
+iu
+im
+rO
+sK
+jA
+uw
+vd
+vS
+wH
+nq
+nq
+np
+zk
+zJ
+nq
+Ar
+BI
+io
+iu
+io
+Dw
+kZ
+jA
+jA
+EB
+EF
+Yt
+FH
+Gq
+Gv
+GV
+Fp
+Fv
+Fp
+Fv
+Fp
+Fv
+FN
+Ep
+IN
+Jc
+Jc
+Jc
+Jc
+Jz
+JD
+JL
+Iv
+JG
+JG
+Iv
+Iv
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(183,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+gh
+gC
+gG
+gM
+gh
+gU
+gY
+gl
+go
+gl
+gh
+hj
+gh
+gB
+hj
+hj
+gl
+hj
+hj
+gB
+gh
+hj
+gh
+gl
+go
+gB
+gI
+gN
+gQ
+gV
+ha
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+in
+iy
+iC
+iL
+iT
+iT
+iT
+iT
+jx
+iC
+jH
+iT
+iT
+iT
+iT
+iT
+ls
+iC
+kZ
+mR
+iC
+iL
+iT
+iT
+jx
+jG
+iu
+qw
+iu
+rP
+sK
+tQ
+ux
+iu
+vR
+nq
+nq
+nq
+yz
+iu
+zJ
+Ar
+nq
+BJ
+iu
+lN
+iu
+jA
+io
+iC
+iC
+Ep
+EV
+Ep
+FQ
+FM
+Gv
+EJ
+Hg
+Fw
+Hg
+Fw
+HY
+If
+Gq
+Ep
+Mi
+Mi
+Mi
+Mi
+Mi
+Mi
+Iv
+Iv
+Iv
+JX
+JX
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(184,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+gh
+gC
+gE
+gk
+gi
+gk
+gX
+gl
+go
+gl
+gh
+hj
+gh
+gB
+hj
+hj
+hj
+hj
+hj
+gB
+gh
+hj
+gh
+gl
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+im
+iz
+iC
+iM
+iU
+iU
+jj
+iU
+iU
+jB
+iU
+iU
+jV
+iU
+iU
+kV
+lt
+iC
+kZ
+mR
+ns
+iK
+iU
+iU
+iU
+lt
+iu
+lL
+iu
+rQ
+sK
+jA
+uw
+vd
+vS
+wH
+nq
+nq
+np
+zk
+zJ
+nq
+Ar
+BK
+iu
+lL
+iu
+jA
+io
+io
+io
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+FP
+FL
+Ep
+IP
+IP
+IP
+IP
+IP
+IP
+Iv
+JG
+JU
+JG
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(185,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gF
+gL
+gk
+gT
+gC
+fZ
+go
+fZ
+gh
+hj
+gh
+fZ
+gl
+hj
+hj
+hj
+gl
+fZ
+gh
+hj
+gh
+fZ
+go
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+il
+ir
+iB
+iI
+ir
+iB
+il
+ir
+iB
+il
+ir
+iB
+il
+ir
+iB
+iI
+ir
+iB
+il
+in
+im
+iu
+ja
+mk
+ja
+iu
+io
+io
+io
+rR
+iC
+mm
+uy
+iu
+vT
+wI
+xq
+wI
+yA
+iu
+zK
+As
+zJ
+BL
+iu
+lN
+iu
+iC
+io
+aa
+aa
+aa
+Ep
+Fx
+FR
+Gb
+Ep
+GD
+GD
+GD
+GD
+GD
+Ep
+FH
+Gq
+Ep
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+JG
+JG
+JG
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(186,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gF
+gh
+gh
+gh
+gC
+fZ
+go
+gB
+gh
+hj
+gh
+gk
+gj
+gk
+gj
+gk
+gj
+gk
+gh
+hj
+gh
+gB
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+il
+iq
+iA
+iH
+iq
+iA
+iH
+iq
+iA
+iH
+iq
+iA
+iH
+iq
+iA
+iH
+iq
+iA
+il
+mU
+nt
+nO
+iC
+kk
+iC
+pn
+io
+qx
+qx
+qx
+ZJ
+tR
+qx
+io
+im
+yU
+mk
+yU
+im
+io
+io
+io
+UO
+io
+io
+iu
+io
+UO
+io
+aa
+aa
+aa
+Ep
+Fy
+FE
+Gc
+Gu
+Gc
+Gc
+Gc
+Gc
+Gc
+HS
+FP
+FL
+Gv
+Ix
+IS
+Je
+Jo
+IS
+WJ
+IS
+JG
+JG
+Iv
+Kg
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(187,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+go
+gm
+go
+fZ
+fZ
+gG
+gM
+gh
+gU
+gY
+fZ
+go
+gB
+gh
+hj
+gh
+gj
+gk
+gj
+gk
+gj
+gk
+gj
+gh
+hj
+gh
+gB
+go
+gB
+gI
+gN
+gQ
+gV
+ha
+fZ
+fZ
+go
+gm
+go
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+il
+ka
+km
+km
+km
+km
+km
+po
+in
+qx
+qU
+qV
+sM
+qV
+uz
+qx
+vU
+vU
+vU
+vU
+vU
+qx
+zL
+qV
+sM
+BM
+Cc
+CO
+CQ
+Cc
+DK
+aa
+aa
+aa
+Ep
+Fz
+FS
+Gd
+Ep
+GW
+Hh
+Hx
+HF
+HR
+Ep
+Ig
+Ir
+Gv
+Ix
+IS
+Jf
+Jp
+IS
+WJ
+IS
+JG
+JG
+Iv
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(188,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gE
+gk
+gi
+gk
+gX
+fZ
+go
+gB
+gh
+hj
+gh
+gk
+gj
+gk
+gj
+gk
+gj
+gk
+gh
+hj
+gh
+gB
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+jW
+kk
+iC
+kW
+iC
+lQ
+io
+kb
+km
+km
+km
+km
+km
+pp
+io
+qx
+qx
+qx
+Wc
+qx
+qx
+qx
+rS
+wJ
+xr
+wJ
+rS
+qx
+qx
+qx
+Wc
+qx
+qx
+qx
+qx
+Wc
+qx
+aa
+aa
+aa
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ep
+Ev
+Ev
+Ep
+Iv
+Iv
+IR
+IR
+Iv
+Iv
+Iv
+IR
+IR
+Iv
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(189,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gF
+gL
+gk
+gT
+gC
+fZ
+go
+fZ
+gh
+gh
+gh
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+gh
+gh
+gh
+fZ
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+jX
+kl
+kz
+kX
+lw
+kl
+kZ
+iC
+km
+km
+km
+km
+km
+po
+io
+qy
+qz
+qx
+sN
+tS
+uA
+uA
+vV
+wK
+xs
+wK
+vV
+uA
+uA
+tS
+AV
+qx
+qz
+qx
+Dc
+Cc
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Ep
+ET
+EU
+Ev
+IQ
+IR
+Jm
+Jr
+IR
+IQ
+IR
+Jm
+Jr
+Iv
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(190,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gF
+gh
+gh
+gh
+gC
+hc
+hi
+hm
+hr
+hy
+hy
+hy
+hy
+hy
+hy
+hy
+hy
+hy
+hy
+hy
+hI
+gh
+gh
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+jY
+kl
+kA
+kY
+lw
+kl
+im
+mV
+nu
+nP
+ob
+iC
+iC
+kh
+io
+qz
+qy
+qx
+sO
+tT
+uB
+uB
+uB
+uB
+uB
+uB
+uB
+uB
+uB
+At
+AW
+qx
+qz
+qx
+Dd
+CQ
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Ep
+Ep
+Ep
+Ep
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+Iv
+JG
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(191,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gG
+gM
+gh
+gU
+gY
+hd
+hj
+hn
+hs
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+hJ
+fZ
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+io
+ja
+io
+io
+io
+ja
+io
+io
+io
+io
+in
+ja
+ja
+in
+io
+qA
+qy
+qV
+sP
+tT
+uB
+ve
+vW
+uB
+uB
+uB
+uB
+uB
+uB
+At
+AX
+qV
+Cd
+qx
+De
+Dx
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Iv
+Kj
+Iv
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(192,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gn
+gm
+fZ
+fZ
+gE
+gl
+gl
+gl
+gX
+hd
+hj
+hn
+hs
+gk
+gl
+gk
+fZ
+gl
+gl
+gl
+fZ
+gk
+gl
+gk
+hJ
+fZ
+fZ
+fZ
+gI
+gN
+gQ
+gV
+ha
+fZ
+fZ
+gm
+gn
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+jZ
+iC
+kB
+in
+lx
+lR
+ml
+mW
+nv
+nQ
+ly
+iC
+iC
+lQ
+io
+qy
+qz
+rS
+sQ
+tT
+uB
+vf
+vX
+vW
+uB
+uB
+uB
+uB
+uB
+At
+AY
+rS
+qy
+qx
+Dc
+Cc
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JV
+JV
+Kk
+JV
+JV
+JV
+JV
+JV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(193,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gF
+gL
+gk
+gT
+gC
+hd
+hj
+hn
+hs
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+gk
+hJ
+fZ
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+ka
+km
+km
+kZ
+ly
+lS
+mm
+mX
+nw
+iu
+ly
+kl
+kl
+kk
+io
+qy
+qz
+qx
+sQ
+tT
+uB
+vf
+vY
+vX
+vW
+uB
+uB
+uB
+uB
+At
+AY
+qx
+qV
+qx
+qx
+sL
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JW
+Kd
+Kd
+Kd
+KE
+Kd
+Kd
+JW
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(194,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gH
+gJ
+gJ
+gJ
+gZ
+he
+hk
+ho
+ht
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+hK
+gh
+gh
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ip
+kb
+km
+kC
+im
+iu
+lT
+iu
+iu
+iu
+im
+oc
+mY
+km
+pq
+io
+qx
+qV
+qx
+sR
+tT
+uB
+ve
+vZ
+vZ
+vZ
+vZ
+vZ
+yB
+uB
+At
+AZ
+qx
+Ce
+CP
+Df
+Dy
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JV
+Kd
+Kd
+Kd
+Kd
+Kd
+Kd
+JV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(195,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gP
+fZ
+fZ
+fZ
+go
+fZ
+hu
+hz
+hz
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+hz
+hz
+hL
+fZ
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+ka
+kl
+kD
+la
+kl
+kl
+kl
+kl
+kl
+iu
+od
+mY
+km
+pr
+io
+qB
+qW
+rT
+sO
+tT
+uB
+vg
+vY
+vY
+vY
+xY
+wa
+zl
+uB
+At
+AW
+BN
+Cf
+CQ
+CQ
+Cc
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JV
+Ke
+Ke
+Ke
+Ke
+Kd
+Ke
+JV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(196,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gB
+hu
+hz
+hz
+hz
+hz
+hj
+gl
+hj
+hz
+hz
+hz
+hz
+hL
+gB
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+in
+kc
+kl
+kE
+lb
+kl
+km
+mn
+mY
+kl
+iu
+od
+mY
+km
+ps
+io
+qC
+qX
+rU
+sO
+tT
+uB
+vh
+vg
+vY
+vY
+vY
+yB
+vh
+uB
+At
+Ba
+BO
+Cg
+CQ
+CQ
+Dz
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JV
+Ke
+Ke
+Ke
+Ke
+Kd
+Ke
+JV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(197,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+go
+gm
+go
+fZ
+fZ
+gI
+gN
+gQ
+gV
+ha
+gB
+go
+gB
+hu
+hz
+hz
+hj
+hz
+hz
+hj
+hz
+hz
+hj
+hz
+hz
+hL
+gB
+go
+gB
+gI
+gN
+gQ
+gV
+ha
+fZ
+fZ
+go
+gm
+go
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+im
+kd
+kl
+kF
+lc
+kl
+km
+mo
+mY
+kl
+iu
+od
+mY
+km
+pt
+io
+qD
+qY
+rV
+sO
+tT
+uB
+ve
+vZ
+wL
+vY
+vY
+vY
+yB
+uB
+At
+AW
+BP
+Cf
+CQ
+Dg
+DA
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JV
+Kd
+Kl
+Kd
+Kd
+Kd
+Kd
+JV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(198,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gB
+hu
+hz
+hz
+gl
+hj
+hz
+hz
+hz
+hj
+gl
+hz
+hz
+hL
+gB
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+in
+ke
+kl
+kG
+ld
+kl
+km
+km
+km
+kl
+kZ
+ly
+km
+km
+pu
+io
+qx
+qV
+qx
+sR
+tT
+uB
+vg
+wa
+wa
+wa
+wa
+wa
+zl
+uB
+At
+AZ
+qx
+Ch
+CR
+Dh
+DB
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JW
+Kf
+Km
+Kz
+KF
+Kd
+Kd
+JW
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(199,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+go
+fZ
+hu
+hz
+hz
+hz
+gl
+hj
+hz
+hj
+gl
+hz
+hz
+hz
+hL
+fZ
+go
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+im
+kf
+kl
+kH
+le
+kl
+km
+mo
+mY
+kl
+iu
+od
+mY
+km
+pv
+in
+qz
+qy
+qx
+sQ
+tT
+uB
+uB
+uB
+uB
+xt
+xZ
+vY
+zm
+uB
+At
+AY
+qx
+qV
+qx
+qx
+qx
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+JV
+JV
+JV
+JV
+JV
+JV
+JV
+JV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(200,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+hp
+hu
+fZ
+hz
+hz
+hz
+gl
+hj
+gl
+hz
+hz
+hz
+fZ
+hL
+hp
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+in
+kg
+kl
+kE
+lb
+kl
+km
+mn
+mY
+kl
+iu
+od
+mY
+km
+ps
+io
+qy
+qz
+rS
+sQ
+tT
+uB
+uB
+uB
+uB
+uB
+xt
+xZ
+zm
+uB
+At
+AY
+rS
+qz
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(201,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gn
+gm
+fZ
+fZ
+gI
+gN
+gQ
+gV
+ha
+gB
+go
+hp
+hu
+hz
+fZ
+hz
+hz
+hz
+hz
+hz
+hz
+hz
+fZ
+hz
+hL
+hp
+go
+gB
+gI
+gN
+gQ
+gV
+ha
+fZ
+fZ
+gm
+gn
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+ka
+kl
+kD
+lf
+kl
+kl
+kl
+kl
+kl
+iu
+od
+mY
+km
+pr
+io
+qA
+qy
+qV
+sS
+tT
+uB
+uB
+uB
+uB
+uB
+uB
+xt
+zl
+uB
+At
+Bb
+qV
+Cd
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(202,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+hp
+hu
+fZ
+hz
+hz
+hz
+gq
+hB
+gq
+hz
+hz
+hz
+fZ
+hL
+hp
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ip
+kb
+km
+kI
+im
+lz
+lU
+mp
+mZ
+lU
+im
+oc
+mY
+km
+ka
+io
+qz
+qy
+qx
+sO
+tT
+uB
+uB
+uB
+uB
+uB
+uB
+uB
+uB
+uB
+At
+AW
+qx
+qy
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(203,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+go
+fZ
+hu
+hz
+hz
+hz
+gq
+hB
+hz
+hB
+gq
+hz
+hz
+hz
+hL
+fZ
+go
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+ka
+km
+km
+kZ
+ly
+lV
+lW
+lW
+lV
+iu
+ly
+kl
+kl
+pw
+io
+qz
+qy
+qx
+sT
+tU
+tU
+tU
+tU
+tU
+tU
+tU
+tU
+tU
+tU
+tU
+Bc
+qx
+qz
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(204,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gB
+hu
+hz
+hz
+gq
+hB
+hz
+hz
+hz
+hB
+gq
+hz
+hz
+hL
+gB
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+kh
+kn
+kJ
+in
+lA
+lW
+mq
+na
+lW
+nR
+ly
+oz
+oR
+ke
+io
+qx
+qx
+qx
+sU
+tV
+tV
+tV
+tV
+tV
+tV
+tV
+tV
+tV
+tV
+tV
+Bd
+qx
+qx
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(205,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+go
+gm
+go
+fZ
+fZ
+gI
+gN
+gQ
+gV
+ha
+gB
+go
+gB
+hu
+hz
+hz
+hB
+hz
+hz
+hB
+hz
+hz
+hB
+hz
+hz
+hL
+gB
+go
+gB
+gI
+gN
+gQ
+gV
+ha
+fZ
+fZ
+go
+gm
+go
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+io
+io
+io
+io
+io
+io
+ip
+io
+io
+im
+io
+io
+io
+io
+io
+io
+qx
+qx
+qx
+sV
+sV
+sV
+sV
+sV
+sV
+sV
+sV
+sV
+sV
+sV
+sV
+sV
+qx
+qx
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(206,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gB
+hu
+hz
+hz
+hz
+hz
+hB
+gq
+hB
+hz
+hz
+hz
+hz
+hL
+gB
+go
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+vi
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(207,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+fZ
+hu
+hz
+hz
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+hz
+hz
+hL
+fZ
+go
+fZ
+fZ
+fZ
+gR
+fZ
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(208,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+gh
+gh
+hv
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+hM
+hP
+hS
+hU
+hX
+gO
+gO
+gO
+ih
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(209,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+fZ
+hw
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hN
+hQ
+hB
+hV
+gF
+ib
+hf
+ie
+gC
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(210,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gn
+gm
+fZ
+fZ
+gI
+gN
+gQ
+gV
+ha
+gB
+fZ
+fZ
+hw
+hf
+gq
+hf
+fZ
+gq
+gq
+gq
+fZ
+hf
+gq
+hf
+hN
+hQ
+hB
+hV
+hY
+gq
+gq
+gq
+ii
+fZ
+fZ
+gm
+gn
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(211,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+fZ
+hw
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hN
+hQ
+hB
+hV
+hZ
+ic
+gh
+if
+ij
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(212,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+gh
+gh
+hx
+hA
+hA
+hA
+hA
+hA
+hA
+hA
+hA
+hA
+hA
+hA
+hO
+hR
+hT
+hW
+gF
+gh
+gh
+gh
+gC
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(213,1,1) = {"
+ab
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ab
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ab
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+fZ
+gh
+gh
+gh
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+gh
+gh
+gh
+fZ
+go
+fZ
+gF
+ib
+hf
+ie
+gC
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(214,1,1) = {"
+ac
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+bj
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bj
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+fx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gB
+gh
+hB
+gh
+hf
+gs
+hf
+gs
+hf
+gs
+hf
+gh
+hB
+gh
+gB
+go
+fZ
+hY
+hf
+gp
+hf
+ii
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(215,1,1) = {"
+ac
+af
+aw
+af
+af
+aO
+aR
+aG
+af
+ax
+af
+bj
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bj
+dm
+dG
+dG
+dm
+dG
+dG
+dm
+dG
+dG
+dm
+fx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+go
+gm
+go
+fZ
+fZ
+gI
+gN
+gQ
+gV
+ha
+gB
+go
+gB
+gh
+hB
+gh
+gs
+hf
+gs
+hf
+gs
+hf
+gs
+gh
+hB
+gh
+gB
+go
+fZ
+hZ
+ic
+gh
+if
+ij
+fZ
+fZ
+go
+gm
+go
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(216,1,1) = {"
+ac
+af
+ax
+af
+af
+af
+af
+af
+af
+ax
+af
+bj
+bk
+bk
+bk
+bk
+ce
+cq
+bk
+bk
+bk
+bk
+bj
+dm
+dG
+dG
+eu
+dG
+dG
+eu
+dG
+dG
+dm
+fx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gB
+gh
+hB
+gh
+hf
+gs
+hf
+gs
+hf
+gs
+hf
+gh
+hB
+gh
+gB
+go
+fZ
+gF
+gh
+gh
+gh
+gC
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(217,1,1) = {"
+ac
+af
+ax
+aG
+aM
+af
+aS
+af
+af
+aG
+af
+bj
+bk
+bk
+bk
+bk
+bk
+cr
+bk
+bk
+bk
+bk
+bj
+dm
+dG
+dG
+dm
+dG
+dG
+dm
+dG
+dG
+dm
+fx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+go
+fZ
+gh
+hB
+gh
+fZ
+gq
+hB
+hB
+hB
+gq
+fZ
+gh
+hB
+gh
+fZ
+go
+fZ
+gF
+ib
+hf
+ie
+gC
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(218,1,1) = {"
+ac
+af
+af
+af
+af
+af
+aw
+af
+af
+af
+af
+bj
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bk
+bj
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+fx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gq
+gh
+hB
+gh
+gB
+hB
+hB
+hB
+hB
+hB
+gB
+gh
+hB
+gh
+gq
+go
+gq
+hY
+hf
+gp
+hf
+ii
+gF
+gh
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(219,1,1) = {"
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+gI
+gN
+gQ
+gV
+ha
+gB
+go
+gq
+gh
+hB
+gh
+gB
+hB
+hB
+gq
+hB
+hB
+gB
+gh
+hB
+gh
+gq
+go
+gq
+hZ
+ic
+gh
+if
+ij
+gF
+gh
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(220,1,1) = {"
+ac
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+bj
+bl
+bn
+bD
+ca
+bD
+bl
+ca
+bD
+bm
+bl
+bj
+dn
+dH
+ed
+ev
+ew
+ev
+ew
+eW
+fj
+dn
+fx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gq
+gh
+hB
+gh
+gB
+hB
+hB
+hB
+hB
+hB
+gB
+gh
+hB
+gh
+gq
+go
+gq
+gF
+gh
+gh
+gh
+gC
+gF
+gh
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(221,1,1) = {"
+ac
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+bj
+bm
+bD
+bR
+bl
+bl
+bE
+cD
+cK
+cK
+ca
+bj
+dn
+dI
+ee
+ew
+ev
+ew
+ev
+eX
+fk
+dn
+fx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+go
+fZ
+gh
+hB
+gh
+fZ
+gq
+hB
+hB
+hB
+gq
+fZ
+gh
+hB
+gh
+fZ
+go
+fZ
+gF
+ib
+hf
+ie
+gC
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(222,1,1) = {"
+ac
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+bj
+bl
+bE
+bS
+cb
+bl
+bl
+bR
+cL
+cM
+bl
+bj
+dn
+dJ
+ed
+ev
+ew
+ev
+ew
+eW
+fl
+dn
+fx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gn
+gm
+gn
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gB
+gh
+hB
+gh
+hf
+gs
+hf
+gs
+hf
+gs
+hf
+gh
+hB
+gh
+gB
+go
+fZ
+hY
+hf
+gp
+hf
+ii
+fZ
+fZ
+gn
+gm
+gn
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(223,1,1) = {"
+ac
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+bj
+bn
+bF
+bT
+cc
+bl
+bm
+cE
+cM
+cK
+bn
+bj
+dn
+dK
+ee
+ew
+ev
+ew
+ev
+eX
+fm
+dn
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gn
+gm
+gn
+fZ
+fZ
+gI
+gN
+gQ
+gV
+ha
+gB
+go
+gB
+gh
+hB
+gh
+gs
+hf
+gs
+hf
+gs
+hf
+gs
+gh
+hB
+gh
+gB
+go
+fZ
+hZ
+ic
+gh
+if
+ij
+fZ
+fZ
+gn
+gm
+gn
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(224,1,1) = {"
+ac
+ak
+ay
+aH
+aj
+aH
+aH
+aj
+aH
+ay
+bc
+bj
+bl
+bl
+bD
+ca
+bl
+bD
+bl
+cN
+cW
+bl
+bj
+dn
+dH
+ed
+ev
+ew
+ev
+ew
+eW
+fj
+dn
+fx
+ab
+fB
+fB
+fB
+fB
+fB
+fB
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+gB
+gh
+hB
+gh
+hf
+gs
+hf
+gs
+hf
+gs
+hf
+gh
+hB
+gh
+gB
+go
+fZ
+gF
+gh
+gh
+gh
+gC
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(225,1,1) = {"
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ab
+fC
+fC
+fC
+fC
+fC
+fC
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+go
+fZ
+gh
+gh
+gh
+fZ
+fZ
+gB
+gB
+gB
+fZ
+fZ
+gh
+gh
+gh
+fZ
+go
+fZ
+gF
+ib
+hf
+ie
+gC
+gF
+gh
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(226,1,1) = {"
+ac
+al
+az
+an
+an
+aP
+aP
+aP
+aP
+aP
+aP
+bj
+bo
+bG
+bH
+bH
+cf
+cs
+bH
+cO
+bH
+cZ
+ac
+do
+dL
+ef
+ex
+eH
+eH
+eH
+eY
+dL
+fq
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fV
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gC
+hY
+hf
+gp
+hf
+ii
+gF
+gh
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(227,1,1) = {"
+ac
+am
+an
+aI
+an
+aQ
+aT
+aY
+ba
+ba
+bd
+bj
+bp
+bH
+bH
+bH
+bH
+bH
+bH
+cP
+bH
+da
+ac
+dp
+dL
+eg
+ey
+eH
+eH
+eH
+eY
+dL
+fq
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fV
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+fZ
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+fZ
+fZ
+fZ
+ia
+id
+gJ
+ig
+ik
+gF
+gh
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(228,1,1) = {"
+ac
+an
+aA
+aJ
+aN
+an
+aU
+aZ
+aZ
+aZ
+be
+bj
+bq
+bH
+bU
+cd
+cg
+ct
+bH
+cQ
+cX
+db
+ac
+dq
+dM
+eg
+ez
+eH
+eH
+eH
+eZ
+dL
+fq
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fV
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+fZ
+fZ
+gR
+fZ
+fZ
+fZ
+fZ
+fZ
+gQ
+fZ
+gB
+fZ
+fZ
+hf
+hf
+hf
+fZ
+fZ
+gB
+fZ
+gQ
+fZ
+fZ
+fZ
+fZ
+gO
+gO
+gO
+fZ
+fZ
+fZ
+gm
+gm
+gm
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(229,1,1) = {"
+ac
+an
+aA
+aK
+aN
+an
+aV
+aZ
+aZ
+aZ
+be
+bj
+br
+bH
+bV
+cd
+bH
+bH
+bH
+bH
+bH
+dc
+ac
+dr
+dL
+eg
+eA
+eH
+eH
+eH
+eY
+dL
+fq
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fV
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+fZ
+fZ
+gQ
+gB
+gB
+gB
+hf
+hf
+hf
+hf
+hf
+gB
+gB
+gB
+gQ
+fZ
+fZ
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(230,1,1) = {"
+ac
+ao
+an
+aL
+an
+aQ
+aT
+aZ
+bb
+bb
+bf
+bj
+bs
+bH
+bW
+cd
+ch
+cu
+bH
+bH
+bH
+dd
+ac
+ds
+dL
+eh
+ex
+eH
+eH
+eH
+eY
+dL
+fq
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fV
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gh
+gh
+gz
+gs
+ge
+gh
+gh
+gh
+gz
+fZ
+fZ
+fZ
+gQ
+fZ
+gB
+fZ
+hf
+gh
+gh
+gh
+hf
+fZ
+gB
+fZ
+gQ
+fZ
+fZ
+fZ
+ge
+gh
+gh
+gh
+gz
+gs
+ge
+gh
+gh
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(231,1,1) = {"
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ab
+fD
+fD
+fD
+fD
+fD
+fD
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gq
+gq
+gq
+gz
+gs
+ge
+gq
+gq
+gq
+gz
+gQ
+gQ
+gQ
+gQ
+gQ
+gQ
+fZ
+hf
+fZ
+gq
+fZ
+hf
+fZ
+gQ
+gQ
+gQ
+gQ
+gQ
+gQ
+ge
+gq
+gq
+gq
+gz
+gs
+ge
+gq
+gq
+gq
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(232,1,1) = {"
+ac
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+bj
+bt
+bI
+bI
+bI
+ci
+cv
+cF
+cF
+cF
+de
+bj
+dt
+dN
+ei
+ej
+eI
+eP
+ej
+fa
+fn
+fr
+fx
+fy
+fE
+fL
+fN
+fN
+fS
+fE
+fy
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gq
+gh
+gz
+gs
+ge
+gh
+gq
+gh
+gz
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+hf
+gh
+gh
+gh
+hf
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+ge
+gh
+gq
+gh
+gz
+gs
+ge
+gh
+gq
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(233,1,1) = {"
+ac
+ap
+aB
+ap
+ap
+ap
+ap
+ap
+ap
+aB
+ap
+bj
+bt
+bI
+bX
+bJ
+cj
+cw
+bJ
+cR
+cF
+de
+bj
+du
+dO
+ej
+ej
+eJ
+eJ
+eV
+fb
+fo
+fs
+fx
+fz
+fz
+fz
+fz
+fz
+fz
+fz
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+fZ
+fZ
+gQ
+fZ
+fZ
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(234,1,1) = {"
+ac
+ap
+ap
+ap
+ap
+aB
+aB
+ap
+ap
+ap
+ap
+bj
+bu
+bJ
+bX
+bJ
+cj
+cw
+cG
+cR
+bJ
+df
+bj
+du
+dP
+ek
+ej
+ej
+ej
+eV
+fc
+fo
+fs
+fx
+fA
+fF
+fF
+fF
+fF
+fF
+fF
+fA
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+hf
+hf
+hf
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(235,1,1) = {"
+ac
+ap
+aB
+ap
+ap
+ap
+ap
+ap
+ap
+aB
+ap
+bj
+bv
+bK
+bX
+bJ
+cj
+cw
+bJ
+cR
+cH
+dg
+bj
+du
+dQ
+ej
+ej
+eK
+eK
+eV
+fd
+fo
+fs
+fx
+fz
+fG
+fG
+fG
+fG
+fG
+fG
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(236,1,1) = {"
+ac
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+bj
+bv
+bK
+bK
+bK
+ck
+cx
+cH
+cH
+cH
+dg
+bj
+dt
+dR
+el
+ej
+eL
+eQ
+ej
+fe
+fn
+ft
+fx
+fz
+fH
+fH
+fH
+fH
+fH
+fH
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gq
+gh
+gz
+gB
+ge
+gh
+gq
+gh
+gz
+hf
+hf
+gh
+fZ
+gh
+hf
+hf
+hf
+gq
+hC
+gq
+hf
+hf
+hf
+gh
+fZ
+gh
+hf
+hf
+ge
+gh
+gq
+gh
+gz
+gB
+ge
+gh
+gq
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(237,1,1) = {"
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+fz
+fH
+fH
+fH
+fH
+fH
+fH
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gq
+gq
+gq
+gz
+gB
+ge
+gq
+gq
+gq
+gz
+hf
+hf
+gh
+gq
+gh
+hf
+hf
+hf
+hC
+hF
+hC
+hf
+hf
+hf
+gh
+gq
+gh
+hf
+hf
+ge
+gq
+gq
+gq
+gz
+gB
+ge
+gq
+gq
+gq
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(238,1,1) = {"
+ac
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+bj
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+cS
+cY
+dh
+bj
+dv
+dS
+em
+eB
+eM
+eR
+eM
+eR
+eM
+ep
+fx
+fz
+fH
+fH
+fO
+fO
+fH
+fH
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gq
+gh
+gz
+gB
+ge
+gh
+gq
+gh
+gz
+hf
+hf
+gh
+fZ
+gh
+hf
+hf
+hf
+gq
+hC
+gq
+hf
+hf
+hf
+gh
+fZ
+gh
+hf
+hf
+ge
+gh
+gq
+gh
+gz
+gB
+ge
+gh
+gq
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(239,1,1) = {"
+ac
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+bj
+bw
+bL
+bY
+bw
+cl
+bw
+bw
+cT
+cY
+dh
+bj
+dw
+dT
+en
+eB
+eN
+eS
+eN
+eS
+eN
+en
+fx
+fz
+fH
+fH
+fP
+fR
+fH
+fH
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(240,1,1) = {"
+ac
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+bj
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+cU
+cY
+dh
+bj
+dx
+dU
+eo
+eB
+eB
+eB
+eB
+eB
+eB
+eB
+fx
+fz
+fH
+fH
+fO
+fO
+fH
+fH
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+hf
+hf
+hf
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(241,1,1) = {"
+ac
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+bj
+bw
+bM
+bY
+bw
+bw
+cy
+bw
+cS
+cY
+dh
+bj
+dy
+dV
+ep
+eB
+eM
+eR
+eM
+eR
+eM
+ep
+fx
+fz
+fH
+fH
+fH
+fH
+fH
+fH
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+gd
+gp
+gp
+gp
+gy
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(242,1,1) = {"
+ac
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+bj
+bw
+bw
+bw
+bw
+bw
+bw
+bw
+cS
+cY
+dh
+bj
+dz
+dW
+eq
+eB
+eN
+eS
+eN
+eS
+eN
+en
+fx
+fz
+fH
+fH
+fH
+fH
+fH
+fH
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gq
+gh
+gz
+gs
+ge
+gh
+gq
+gh
+gz
+gs
+ge
+gh
+gq
+gh
+gz
+fZ
+hf
+gh
+gh
+gh
+hf
+fZ
+ge
+hf
+gq
+hf
+gz
+gs
+ge
+gh
+gq
+gh
+gz
+gs
+ge
+gh
+gq
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(243,1,1) = {"
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+fz
+fI
+fI
+fI
+fI
+fI
+fI
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gq
+gq
+gq
+gz
+gs
+ge
+gq
+gq
+gq
+gz
+gs
+ge
+gq
+gq
+gq
+gz
+fZ
+hf
+fZ
+gq
+fZ
+hf
+fZ
+ge
+gq
+gq
+gq
+gz
+gs
+ge
+gq
+gq
+gq
+gz
+gs
+ge
+gq
+gq
+gq
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(244,1,1) = {"
+ac
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+bj
+bx
+bN
+bN
+bN
+cm
+cz
+bN
+bN
+bN
+bz
+bj
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+fx
+fA
+fF
+fF
+fF
+fF
+fF
+fF
+fA
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gh
+gh
+gz
+gs
+ge
+gh
+gh
+gh
+gz
+gs
+ge
+gh
+gq
+gh
+gz
+fZ
+hf
+gh
+gh
+gh
+hf
+fZ
+ge
+hf
+gq
+hf
+gz
+gs
+ge
+gh
+gh
+gh
+gz
+gs
+ge
+gh
+gh
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(245,1,1) = {"
+ac
+ar
+aC
+ar
+ar
+ar
+ar
+ar
+ar
+aC
+ar
+bj
+by
+bN
+bN
+bN
+cm
+cz
+bN
+bN
+bN
+di
+bj
+dA
+dX
+dA
+eC
+eO
+eT
+eO
+eD
+eO
+dA
+fx
+fz
+fz
+fz
+fz
+fz
+fz
+fz
+fz
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+gf
+gr
+gr
+gr
+gA
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(246,1,1) = {"
+ac
+ar
+ar
+ar
+aC
+ar
+ar
+aC
+ar
+ar
+ar
+bj
+by
+bN
+bN
+bN
+cm
+cz
+bN
+bN
+bN
+di
+bj
+dA
+dY
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+fx
+fy
+fJ
+fM
+fQ
+fQ
+fT
+fJ
+fy
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+hq
+hq
+hq
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+hq
+hq
+hq
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+fZ
+gs
+gs
+gs
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(247,1,1) = {"
+ac
+ar
+aC
+ar
+ar
+ar
+ar
+ar
+ar
+aC
+ar
+bj
+by
+bN
+bN
+bN
+cm
+cz
+bN
+bN
+bN
+di
+bj
+dA
+dZ
+dA
+eD
+eO
+eU
+eO
+ff
+eO
+dA
+fx
+ab
+fD
+fD
+fD
+fD
+fD
+fD
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gd
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gy
+hg
+hf
+hf
+hf
+hf
+hf
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+hf
+hf
+hf
+hf
+hf
+hg
+gd
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gp
+gy
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(248,1,1) = {"
+ac
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+bj
+bz
+bN
+bN
+bN
+cm
+cz
+bN
+bN
+bN
+bx
+bj
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+dA
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fW
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gz
+fZ
+hf
+gq
+gq
+gq
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+gq
+gq
+gq
+hf
+fZ
+ge
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(249,1,1) = {"
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fW
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gz
+fZ
+hf
+gq
+hf
+hf
+hf
+hf
+hf
+hf
+hC
+hf
+hf
+hf
+hf
+hf
+hf
+gq
+hf
+fZ
+ge
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(250,1,1) = {"
+ac
+as
+aD
+aD
+aD
+aD
+aW
+aW
+aW
+aW
+bg
+bj
+bA
+bO
+bO
+bO
+cn
+cA
+cI
+cI
+cI
+dj
+bj
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fW
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gz
+fZ
+hf
+gq
+hf
+hf
+hf
+hf
+hf
+hC
+hG
+hC
+hf
+hf
+hf
+hf
+hf
+gq
+hf
+fZ
+ge
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(251,1,1) = {"
+ac
+at
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+bh
+bj
+bB
+bP
+bZ
+bP
+co
+cB
+bP
+cV
+bP
+dk
+bj
+dC
+ea
+er
+eE
+eE
+eE
+eE
+fg
+fp
+fu
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fW
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gz
+fZ
+hf
+gq
+hf
+hf
+hf
+hf
+hf
+hf
+hC
+hf
+hf
+hf
+hf
+hf
+hf
+gq
+hf
+fZ
+ge
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gt
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(252,1,1) = {"
+ac
+at
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+bh
+bj
+bB
+bP
+bZ
+bP
+co
+cB
+bP
+cV
+bP
+dk
+bj
+dD
+eb
+es
+eF
+eF
+eF
+eF
+fh
+fp
+fv
+fx
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+fU
+fW
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+ge
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gz
+fZ
+hf
+gq
+gq
+gq
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+hf
+gq
+gq
+gq
+hf
+fZ
+ge
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gh
+gz
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(253,1,1) = {"
+ac
+at
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+bh
+bj
+bB
+bP
+bZ
+bP
+co
+cB
+bP
+cV
+bP
+dk
+bj
+dE
+ec
+et
+eG
+eG
+eG
+eG
+fi
+fp
+fw
+fx
+ab
+fC
+fC
+fC
+fC
+fC
+fC
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+gf
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gA
+hg
+hf
+hf
+hf
+hf
+hf
+fZ
+hf
+hf
+hf
+hf
+hf
+fZ
+hf
+hf
+hf
+hf
+hf
+hg
+gf
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gr
+gA
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(254,1,1) = {"
+ac
+au
+aF
+aF
+aF
+aF
+aX
+aX
+aX
+aX
+bi
+bj
+bC
+bQ
+bQ
+bQ
+cp
+cC
+cJ
+cJ
+cJ
+dl
+bj
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fx
+ab
+fK
+fK
+fK
+fK
+fK
+fK
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(255,1,1) = {"
+ab
+av
+av
+av
+av
+av
+av
+av
+av
+av
+av
+ab
+av
+av
+av
+av
+av
+av
+av
+av
+av
+av
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Mc
+Mc
+"}
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index 23b7b0aaa5..4c51f61812 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -3,32 +3,43 @@
/turf/open/space/basic,
/area/space)
"aab" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
"aac" = (
-/obj/effect/landmark/start/scientist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 2;
+ pixel_x = 30;
+ receive_ore_updates = 1
},
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
+/obj/machinery/camera{
+ c_tag = "Bar";
+ dir = 8
+ },
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
"aad" = (
-/obj/machinery/computer/camera_advanced/xenobio{
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
+/turf/open/floor/wood,
+/area/maintenance/port/aft)
"aae" = (
/obj/effect/landmark/carpspawn,
/turf/open/space,
@@ -261,23 +272,16 @@
},
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"aaR" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"aaS" = (
/obj/structure/grille,
/obj/structure/lattice,
/turf/open/space,
/area/space/nearstation)
"aaT" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
+/obj/machinery/flasher/portable,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/security/armory)
"aaU" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/floorgrime,
@@ -381,40 +385,6 @@
/obj/machinery/vending/security,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"abm" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "xenobio8";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"abn" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "xenobio7";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"abo" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -536,33 +506,6 @@
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"abH" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "xenobio6";
- name = "Containment Blast Doors";
- pixel_y = 4;
- req_access_txt = "55"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"abI" = (
-/obj/structure/sign/poster/official/safety_internals{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"abJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"abK" = (
/obj/structure/chair/stool,
/obj/machinery/light/small{
@@ -614,15 +557,6 @@
"abO" = (
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"abP" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"abQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/window/southleft{
@@ -847,27 +781,10 @@
/obj/structure/closet/secure_closet/hos,
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"aco" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 2;
- external_pressure_bound = 140;
- pressure_checks = 0;
- name = "killroom vent"
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology Kill Room";
- dir = 4;
- network = list("ss13","rd")
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"acp" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"acq" = (
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"acr" = (
/obj/structure/chair/comfy/black,
/obj/effect/landmark/start/head_of_security,
@@ -899,14 +816,6 @@
/obj/effect/turf_decal/bot_white,
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
-"acw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 2;
- external_pressure_bound = 120;
- name = "killroom vent"
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"acx" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -1333,10 +1242,11 @@
/turf/open/floor/wood,
/area/crew_quarters/theatre)
"adr" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/biohazard,
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = -32
+ },
/turf/open/floor/plating,
-/area/science/xenobiology)
+/area/security/main)
"ads" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -1946,12 +1856,6 @@
"aeE" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_3)
-"aeF" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"aeG" = (
/obj/structure/cable,
/obj/machinery/power/solar{
@@ -2280,8 +2184,7 @@
/area/security/main)
"afo" = (
/obj/machinery/door/airlock/external{
- name = "Escape Pod Three";
- req_access_txt = "0"
+ name = "Escape Pod Three"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -2297,7 +2200,8 @@
id = "pod3";
name = "escape pod 3";
port_direction = 2;
- preferred_direction = 4
+ preferred_direction = 4;
+ timid = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
@@ -2490,7 +2394,6 @@
"afO" = (
/obj/machinery/door/airlock/command{
name = "Command Tool Storage";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel,
@@ -2499,22 +2402,10 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/command{
name = "Command Tool Storage";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/dark,
/area/ai_monitored/storage/eva)
-"afQ" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- target_temperature = 80;
- dir = 2;
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"afR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/spawner/structure/window/reinforced,
@@ -2589,19 +2480,6 @@
},
/turf/open/floor/plating,
/area/security/main)
-"agd" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"age" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"agf" = (
/obj/structure/table,
/obj/item/stack/sheet/metal,
@@ -2687,11 +2565,6 @@
"agn" = (
/turf/closed/wall/r_wall,
/area/security/warden)
-"ago" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"agp" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -2752,17 +2625,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"agv" = (
-/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/science/xenobiology)
"agw" = (
/obj/structure/table,
/obj/machinery/syndicatebomb/training,
@@ -3188,15 +3050,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ahw" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"ahx" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -3422,13 +3275,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ahR" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"ahS" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -3834,18 +3680,6 @@
/obj/machinery/light,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aiN" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/obj/structure/table,
-/obj/item/folder/white,
-/obj/item/pen,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"aiO" = (
/obj/structure/window/reinforced{
dir = 4
@@ -4137,10 +3971,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"ajC" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/xenobiology)
"ajD" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -4162,11 +3992,6 @@
dir = 8
},
/area/security/brig)
-"ajG" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/science/xenobiology)
"ajH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -4294,7 +4119,6 @@
"ajW" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/structure/cable{
@@ -4303,15 +4127,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
-"ajX" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ajY" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"ajZ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/sign/warning/vacuum/external{
@@ -4778,7 +4593,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -4979,17 +4793,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
-"alN" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "seclobby";
- name = "security shutters"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/brig)
"alO" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -5198,7 +5001,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -5281,15 +5083,6 @@
/obj/item/trash/plate,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"amI" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Cryogenics APC";
- pixel_x = 24
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/crew_quarters/cryopod)
"amL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/spawner/structure/window/reinforced,
@@ -5571,25 +5364,29 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"anE" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 0;
- req_access_txt = "13"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"anF" = (
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
+"anG" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
"anH" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
/area/maintenance/solars/port/fore)
"anI" = (
/obj/machinery/door/airlock/engineering{
- locked = 0;
name = "Port Bow Solar Access";
req_access_txt = "10"
},
@@ -6541,7 +6338,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -6602,7 +6398,6 @@
"aqv" = (
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -6615,7 +6410,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
- locked = 0;
name = "Starboard Bow Solar Access";
req_access_txt = "10"
},
@@ -6686,7 +6480,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -7322,7 +7115,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -7421,7 +7213,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -7628,10 +7419,7 @@
/area/crew_quarters/heads/hos)
"atp" = (
/obj/machinery/door/airlock/external{
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Construction Zone"
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
@@ -7692,8 +7480,7 @@
/obj/machinery/button/door{
id = "maint3";
name = "Blast Door Control C";
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
@@ -8027,7 +7814,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -8937,15 +8723,13 @@
id = "maint2";
name = "Blast Door Control B";
pixel_x = -28;
- pixel_y = 4;
- req_access_txt = "0"
+ pixel_y = 4
},
/obj/machinery/button/door{
id = "maint1";
name = "Blast Door Control A";
pixel_x = -28;
- pixel_y = -6;
- req_access_txt = "0"
+ pixel_y = -6
},
/obj/structure/cable{
icon_state = "1-2"
@@ -10234,8 +10018,7 @@
/area/ai_monitored/storage/eva)
"azX" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -11677,9 +11460,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"aDG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 4
},
@@ -11771,8 +11552,7 @@
/area/crew_quarters/theatre)
"aDS" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -12091,8 +11871,7 @@
/area/security/checkpoint/auxiliary)
"aEL" = (
/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
+ name = "Garden"
},
/turf/open/floor/plasteel,
/area/hydroponics/garden)
@@ -12283,8 +12062,7 @@
/area/crew_quarters/toilet)
"aFh" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -13073,7 +12851,6 @@
"aGZ" = (
/obj/machinery/door/airlock/security{
name = "Security Checkpoint";
- req_access = null;
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13724,7 +13501,6 @@
id = "aux_base_shutters";
name = "Public Shutters Control";
pixel_x = 24;
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/turf/open/floor/plasteel/yellow/side{
@@ -14299,8 +14075,6 @@
"aKc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
- lockdownbyai = 0;
- locked = 0;
name = "Gateway Access";
req_access_txt = "62"
},
@@ -14798,7 +14572,6 @@
"aLu" = (
/obj/machinery/door/airlock/engineering{
name = "Auxillary Base Construction";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -15556,8 +15329,7 @@
"aNH" = (
/obj/machinery/door/window{
dir = 4;
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -16353,18 +16125,6 @@
/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)
@@ -16780,8 +16540,7 @@
/area/maintenance/port)
"aRc" = (
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/turf/open/floor/plating,
/area/storage/emergency/port)
@@ -17460,21 +17219,6 @@
/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;
- receive_ore_updates = 1
- },
-/obj/machinery/camera{
- c_tag = "Bar";
- dir = 8
- },
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
"aTb" = (
/obj/machinery/newscaster{
pixel_y = 32
@@ -19148,7 +18892,6 @@
"aXl" = (
/obj/machinery/door/window/southright{
name = "Bar Door";
- req_access_txt = "0";
req_one_access_txt = "25;28"
},
/turf/open/floor/plasteel/bar,
@@ -19174,8 +18917,7 @@
/area/hydroponics)
"aXp" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
@@ -19299,9 +19041,7 @@
dir = 4
},
/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ name = "Port Docking Bay 2"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -19629,7 +19369,6 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
- locked = 0;
name = "AI Upload Access";
req_access_txt = "16"
},
@@ -20112,7 +19851,6 @@
"aZQ" = (
/obj/machinery/door/airlock/command{
name = "Conference Room";
- req_access = null;
req_access_txt = "19"
},
/obj/structure/cable{
@@ -20152,7 +19890,6 @@
"aZX" = (
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable{
@@ -21554,6 +21291,9 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
/turf/open/floor/plating,
/area/maintenance/aft)
"bdP" = (
@@ -21942,16 +21682,14 @@
"beK" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 4";
- req_access_txt = "0"
+ name = "Port Docking Bay 4"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"beL" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 3";
- req_access_txt = "0"
+ name = "Port Docking Bay 3"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -22923,8 +22661,7 @@
/area/medical/morgue)
"bhr" = (
/obj/machinery/door/airlock{
- name = "Starboard Emergency Storage";
- req_access_txt = "0"
+ name = "Starboard Emergency Storage"
},
/turf/open/floor/plating,
/area/storage/emergency/starboard)
@@ -22936,8 +22673,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
@@ -24448,7 +24184,6 @@
"blb" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -25025,7 +24760,6 @@
"bms" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/cable{
@@ -25083,8 +24817,7 @@
/area/crew_quarters/heads/captain)
"bmA" = (
/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
+ name = "Private Restroom"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
@@ -25690,8 +25423,7 @@
},
/obj/machinery/door/airlock/engineering/glass{
name = "Gravity Generator";
- req_access_txt = "11";
- req_one_access_txt = "0"
+ req_access_txt = "11"
},
/turf/open/floor/plasteel/dark,
/area/engine/gravity_generator)
@@ -26144,8 +25876,7 @@
/obj/machinery/door/window/northleft{
dir = 8;
icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
@@ -26411,7 +26142,6 @@
"bpD" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
@@ -27278,7 +27008,6 @@
/area/science/explab)
"brE" = (
/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -27665,8 +27394,7 @@
"bsw" = (
/obj/machinery/door/airlock/research{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/turf/open/floor/plasteel/white,
/area/science/robotics/lab)
@@ -28600,6 +28328,9 @@
name = "Genetics Research Access";
req_access_txt = "9"
},
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"buH" = (
@@ -28616,6 +28347,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
/turf/open/floor/plasteel/white,
/area/science/research)
"buI" = (
@@ -28871,8 +28605,7 @@
/area/medical/medbay/central)
"bvl" = (
/obj/machinery/door/airlock/medical/glass{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29908,7 +29641,6 @@
"bxG" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/cable{
@@ -30111,7 +29843,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable{
@@ -30498,9 +30229,7 @@
/area/medical/sleeper)
"bzc" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Room";
- req_access_txt = "0"
+ name = "Recovery Room"
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
@@ -32576,7 +32305,6 @@
/area/maintenance/aft)
"bDW" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -32624,7 +32352,6 @@
dir = 4
},
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -33416,7 +33143,6 @@
/area/science/mixing)
"bFY" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/obj/structure/cable{
@@ -33628,8 +33354,8 @@
/area/science/mixing)
"bGA" = (
/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
@@ -33906,9 +33632,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"bHg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bHh" = (
@@ -34666,6 +34390,13 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"bIP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"bIQ" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -34763,7 +34494,6 @@
},
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48";
shuttledocked = 1
},
@@ -35772,6 +35502,9 @@
/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bLj" = (
@@ -36267,6 +36000,7 @@
dir = 4;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/engine,
/area/science/mixing)
"bMy" = (
@@ -36277,6 +36011,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bMz" = (
@@ -36665,6 +36400,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bNy" = (
@@ -37109,6 +36845,7 @@
dir = 8;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
/area/science/mixing)
"bOG" = (
@@ -37120,6 +36857,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bOH" = (
@@ -37509,6 +37247,14 @@
},
/turf/open/floor/plasteel,
/area/science/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/science/xenobiology)
"bPz" = (
/obj/structure/table/glass,
/obj/item/storage/box/beakers{
@@ -37532,6 +37278,18 @@
},
/turf/open/floor/plasteel,
/area/science/xenobiology)
+"bPA" = (
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"bPB" = (
/obj/structure/table/glass,
/obj/item/paper_bin{
@@ -37618,6 +37376,13 @@
/obj/item/clothing/glasses/science,
/turf/open/floor/plasteel,
/area/science/xenobiology)
+"bPI" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"bPJ" = (
/obj/structure/table/glass,
/obj/item/stack/sheet/mineral/plasma{
@@ -38156,11 +37921,6 @@
icon_state = "wood-broken7"
},
/area/maintenance/port/aft)
-"bRd" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/turf/open/floor/wood,
-/area/maintenance/port/aft)
"bRe" = (
/obj/structure/table/wood,
/obj/effect/spawner/lootdrop/maintenance{
@@ -38538,6 +38298,23 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"bRY" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "xenobio8";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"bRZ" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -40226,6 +40003,23 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine,
/area/science/xenobiology)
+"bWm" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "xenobio7";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"bWn" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -40722,7 +40516,6 @@
},
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -41680,6 +41473,23 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine,
/area/science/xenobiology)
+"bZW" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio6";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"bZX" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -42920,6 +42730,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"ccP" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"ccQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/xenobiology)
"ccR" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/bot{
@@ -43825,6 +43643,20 @@
/obj/item/caution,
/turf/open/floor/plating,
/area/maintenance/aft)
+"cfr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 2;
+ external_pressure_bound = 140;
+ pressure_checks = 0;
+ name = "killroom vent"
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Kill Room";
+ dir = 4;
+ network = list("ss13","rd")
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"cfs" = (
/obj/machinery/door/airlock/maintenance/abandoned{
name = "Air Supply Maintenance";
@@ -43862,6 +43694,15 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating/airless,
/area/maintenance/solars/port/aft)
+"cfy" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"cfz" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -44015,12 +43856,10 @@
/obj/structure/cable{
icon_state = "1-4"
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cfZ" = (
@@ -44097,6 +43936,9 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"cgi" = (
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"cgj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/barricade/wooden,
@@ -44105,6 +43947,19 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"cgk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/biohazard,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cgl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 2;
+ external_pressure_bound = 120;
+ name = "killroom vent"
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"cgm" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -44114,6 +43969,17 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"cgn" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ target_temperature = 80;
+ dir = 2;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"cgo" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -44489,8 +44355,18 @@
/obj/structure/cable/yellow{
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
+"cho" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"chp" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44500,6 +44376,44 @@
},
/turf/closed/wall,
/area/maintenance/starboard/aft)
+"chq" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/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/science/xenobiology)
+"chs" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"cht" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"chu" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"chv" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -44678,7 +44592,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -44935,6 +44848,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ciF" = (
@@ -45232,6 +45146,9 @@
/area/maintenance/disposal/incinerator)
"cjs" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cjt" = (
@@ -45249,6 +45166,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cjv" = (
@@ -45258,6 +45178,10 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cjw" = (
@@ -45270,6 +45194,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
/turf/closed/wall,
/area/maintenance/disposal/incinerator)
"cjy" = (
@@ -45288,6 +45215,18 @@
/obj/item/cigbutt/roach,
/turf/open/floor/plating,
/area/maintenance/aft)
+"cjB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/structure/table,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"cjC" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -45512,7 +45451,6 @@
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ckf" = (
-/obj/structure/disposalpipe/segment,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
@@ -45532,6 +45470,9 @@
/area/maintenance/disposal/incinerator)
"cki" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ckj" = (
@@ -45549,6 +45490,7 @@
dir = 4;
name = "Incinerator to Space"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ckl" = (
@@ -45564,6 +45506,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
+"ckn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/science/xenobiology)
"cko" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
@@ -45932,6 +45879,7 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"clk" = (
@@ -45972,7 +45920,6 @@
"clp" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -46156,7 +46103,7 @@
/area/engine/engineering)
"clS" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/rnd/production/techfab/department/security,
+/obj/machinery/rnd/production/protolathe/department/security,
/turf/open/floor/plasteel/red/side,
/area/security/main)
"clT" = (
@@ -46217,6 +46164,9 @@
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cmg" = (
@@ -46420,11 +46370,6 @@
dir = 1
},
/area/engine/engineering)
-"cmR" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/wood,
-/area/maintenance/bar)
"cmU" = (
/obj/machinery/light/small,
/turf/open/floor/engine/n2,
@@ -46451,20 +46396,21 @@
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/warning/fire{
pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "incinerator_airlock_sensor";
+ master_tag = "incinerator_airlock_control";
+ pixel_x = 8;
+ pixel_y = 24
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cmZ" = (
@@ -46475,22 +46421,23 @@
/obj/structure/sign/warning/fire{
pixel_x = 32
},
-/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
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cna" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 8;
+ frequency = 1449;
+ id = "incinerator_airlock_pump"
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cnb" = (
@@ -46547,7 +46494,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -46935,7 +46881,7 @@
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
"coq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 1
},
/obj/structure/sign/warning/vacuum/external{
@@ -47407,10 +47353,9 @@
/area/maintenance/disposal/incinerator)
"cpO" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/components/binary/pump{
+/obj/machinery/atmospherics/components/binary/pump/on{
dir = 2;
- name = "Incinerator Output Pump";
- on = 1
+ name = "Incinerator Output Pump"
},
/turf/open/space,
/area/maintenance/disposal/incinerator)
@@ -47614,7 +47559,6 @@
"cqu" = (
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -48001,13 +47945,8 @@
/turf/open/floor/plating,
/area/engine/engineering)
"crJ" = (
-/obj/machinery/light/small{
- dir = 8;
- light_color = "#fff4bc"
- },
-/obj/structure/closet/emcloset/anchored,
-/turf/open/floor/plating,
-/area/engine/engineering)
+/turf/open/space/basic,
+/area/space/nearstation)
"crK" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -48102,6 +48041,10 @@
},
/turf/open/space,
/area/space/nearstation)
+"csk" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"csl" = (
/obj/structure/transit_tube/curved{
dir = 4
@@ -48137,13 +48080,16 @@
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"csr" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- idInterior = "incinerator_airlock_interior";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Incinerator Access Console";
+ airpump_tag = "incinerator_airlock_pump";
+ exterior_door_tag = "incinerator_airlock_exterior";
+ id_tag = "incinerator_access_control";
+ interior_door_tag = "incinerator_airlock_interior";
pixel_x = 6;
pixel_y = -26;
+ sanitize_external = 1;
+ sensor_tag = "incinerator_airlock_sensor";
req_access_txt = "12"
},
/obj/machinery/button/ignition{
@@ -48269,7 +48215,6 @@
},
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65;13"
},
/turf/open/floor/plating,
@@ -49922,6 +49867,13 @@
},
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
+"cxB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
"cxE" = (
/obj/docking_port/stationary{
dir = 8;
@@ -49984,27 +49936,14 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"cxR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/brig)
"cxW" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -50052,7 +49991,6 @@
},
/obj/machinery/door/airlock/command{
name = "Command Tool Storage";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/dark,
@@ -50072,9 +50010,7 @@
dir = 8
},
/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ name = "Port Docking Bay 2"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -50101,8 +50037,7 @@
dir = 1
},
/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 4";
- req_access_txt = "0"
+ name = "Port Docking Bay 4"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -50111,8 +50046,7 @@
dir = 1
},
/obj/machinery/door/airlock/external{
- name = "Port Docking Bay 3";
- req_access_txt = "0"
+ name = "Port Docking Bay 3"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -50141,7 +50075,6 @@
},
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/turf/open/floor/plating,
@@ -50165,7 +50098,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -50210,7 +50142,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -50233,7 +50164,6 @@
},
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65;13"
},
/turf/open/floor/plating,
@@ -50327,6 +50257,11 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
+"czQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"czR" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -51338,12 +51273,6 @@
dir = 4
},
/area/engine/engineering)
-"cDO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
"cDZ" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -51357,10 +51286,6 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"cEm" = (
-/obj/machinery/vending/autodrobe,
-/turf/open/floor/wood,
-/area/maintenance/bar)
"cEs" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -51426,6 +51351,9 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"cFJ" = (
+/turf/open/floor/plating/airless,
+/area/space)
"cFK" = (
/obj/machinery/field/generator{
anchored = 1;
@@ -51791,37 +51719,6 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"cKh" = (
-/obj/structure/bed,
-/obj/item/bedsheet/grey,
-/obj/effect/decal/cleanable/semen{
- desc = "Blech.";
- name = "dried semen"
- },
-/obj/effect/spawner/lootdrop/costume,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/maintenance/bar)
-"cKI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 1;
- id_tag = "lobbyairlock";
- name = "Security Lobby";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"cLr" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
"cMm" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -51866,6 +51763,14 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"cMP" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
"cMQ" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -51972,7 +51877,6 @@
/area/maintenance/starboard)
"cNV" = (
/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -51986,7 +51890,6 @@
/area/maintenance/starboard/aft)
"cNX" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/obj/structure/cable{
@@ -52073,12 +51976,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"cQZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"cSz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -52430,46 +52327,27 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"cTY" = (
+/obj/structure/sign/poster/official/safety_internals{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"cTZ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"cVb" = (
/turf/closed/wall,
/area/hallway/secondary/service)
-"cVk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"dcm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/machinery/camera/motion{
- c_tag = "Armory Motion Sensor";
- dir = 2;
- name = "motion-sensitive security camera"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"cYR" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"daq" = (
-/obj/machinery/door/airlock/maintenance/abandoned{
- name = "Incinerator Access";
- req_access_txt = "12"
- },
-/obj/structure/barricade/wooden{
- name = "wooden barricade (CLOSED)"
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"ddq" = (
-/obj/structure/grille,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"dfh" = (
/obj/machinery/power/apc{
areastring = "/area/science/circuit";
@@ -52484,47 +52362,99 @@
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"dfW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 6
+"dgt" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dpg" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
},
+/area/maintenance/bar)
+"dqu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"dtr" = (
+/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"
+ },
+/turf/open/floor/plasteel/dark,
/area/security/brig)
-"dAS" = (
+"dvO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/science/circuit)
+"dzh" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/maintenance/bar)
+"dAx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/security/armory)
+"dLh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/maintenance/fore/secondary)
-"dBk" = (
-/turf/open/floor/plasteel/dark,
-/area/security/processing)
-"dLQ" = (
-/turf/open/floor/plasteel/red/corner{
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"dLs" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/security/brig)
+/turf/open/floor/plasteel,
+/area/security/armory)
"dMZ" = (
/obj/structure/sign/poster/official/random{
pixel_y = 32
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"dRy" = (
-/obj/structure/table,
-/obj/item/storage/box/firingpins,
-/obj/item/storage/box/firingpins,
+"dSv" = (
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"dUH" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Secure Cell";
+ name = "Secure Cell Locker"
+ },
+/obj/effect/turf_decal/stripes/white/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery/white,
/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"dUn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/security/brig)
+/area/security/execution/transfer)
"eaI" = (
/obj/structure/table/reinforced,
/obj/item/device/radio/intercom{
@@ -52532,58 +52462,30 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"eiQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/brig)
-"ejb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ejX" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"elx" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/warden)
-"eoF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"efZ" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"eqj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"eng" = (
+/obj/item/lighter/greyscale,
+/obj/effect/decal/cleanable/semen{
+ desc = "Blech.";
+ name = "dried semen"
},
-/turf/open/floor/plasteel/red/corner{
- dir = 1
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
},
-/area/security/brig)
-"ese" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/area/maintenance/bar)
+"eoT" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel,
-/area/security/brig)
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"eyM" = (
/obj/machinery/mineral/ore_redemption{
input_dir = 2;
@@ -52592,30 +52494,37 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"eBn" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
+"eBc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/space/nearstation)
+"eHI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
-/obj/effect/turf_decal/stripes/white/corner,
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
-"eGa" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"eHD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/disposal/incinerator)
"eRz" = (
/obj/structure/lattice,
/obj/structure/grille,
/turf/open/space/basic,
/area/space/nearstation)
+"eTX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"eVC" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
"eVL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light_switch{
@@ -52626,34 +52535,55 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"fdi" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space/basic,
-/area/space)
-"fgi" = (
-/turf/closed/wall,
-/area/crew_quarters/cryopod)
-"fiq" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"fbn" = (
+/obj/machinery/door/window/brigdoor/security/cell{
+ dir = 4;
+ id = "Secure Cell";
+ name = "Secure Cell"
},
-/turf/open/floor/plasteel,
-/area/security/armory)
+/obj/machinery/door/window/brigdoor/security/cell{
+ dir = 8;
+ id = "Secure Cell";
+ name = "Secure Cell"
+ },
+/obj/effect/turf_decal/stripes/white/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/corner{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/dark/side{
+ dir = 8
+ },
+/area/security/execution/transfer)
+"fcG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
"flc" = (
/obj/machinery/bookbinder,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"fmW" = (
-/obj/effect/turf_decal/loading_area/white,
-/obj/effect/turf_decal/stripes/white/corner{
- dir = 8
+"flE" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/stripes/white/corner,
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"fmd" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/item/pen/blue,
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/crew_quarters/cryopod)
"fnC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -52667,55 +52597,73 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hallway/secondary/service)
-"fsC" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"fFB" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"fIx" = (
+"fwk" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"fyQ" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"fzH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/closed/wall,
-/area/maintenance/bar)
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/brig)
+"fBY" = (
+/turf/open/floor/plasteel/purple/side{
+ tag = "icon-purple (NORTH)";
+ icon_state = "purple";
+ dir = 1
+ },
+/area/crew_quarters/cryopod)
"fKl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/science/circuit)
-"fNa" = (
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/bar";
- dir = 2;
- name = "Maintenance Bar APC";
- pixel_x = 1;
- pixel_y = -24
+"fMq" = (
+/turf/open/floor/plasteel,
+/area/security/execution/transfer)
+"fNf" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/cable,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
/area/maintenance/bar)
-"fXR" = (
-/obj/structure/table/wood/poker,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"fRn" = (
+/obj/item/restraints/handcuffs/fake,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"fTt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
},
/turf/open/floor/wood,
/area/maintenance/bar)
+"fYm" = (
+/obj/structure/sign/poster/random{
+ pixel_y = -32
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
"gbq" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -52728,70 +52676,147 @@
/obj/item/stack/sheet/glass/fifty,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"gbY" = (
+/obj/machinery/door/airlock/maintenance/abandoned{
+ name = "Incinerator Access";
+ req_access_txt = "12"
+ },
+/obj/structure/barricade/wooden{
+ name = "wooden barricade (CLOSED)"
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
"gjl" = (
/turf/closed/wall,
/area/quartermaster/warehouse)
-"gnt" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"gls" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
/turf/open/floor/wood{
- icon_state = "wood-broken7"
+ icon_state = "wood-broken"
},
/area/maintenance/bar)
-"gqJ" = (
-/obj/structure/window/reinforced,
-/obj/vehicle/ridden/secway,
-/obj/item/key/security,
-/obj/machinery/door/window/eastleft{
- name = "Secway Docking Port"
+"glE" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/space/nearstation)
+"goA" = (
+/obj/effect/turf_decal/loading_area/white,
+/obj/effect/turf_decal/stripes/white/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/corner,
+/turf/open/floor/plasteel/dark,
+/area/security/execution/transfer)
+"gpe" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "lowsecarmory";
+ name = "Non-Lethal Armoury Shutter"
+ },
+/obj/machinery/button/door{
+ id = "lowsecarmory";
+ name = "Non-Lethal Armory Shutters";
+ pixel_y = 26;
+ req_access_txt = "3"
},
/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/showroomfloor,
-/area/space)
-"gre" = (
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"gtB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
+/turf/open/floor/plasteel,
+/area/security/main)
+"gpQ" = (
+/obj/machinery/vending/autodrobe,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"gpX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/bar)
"gwd" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"gBe" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"gEu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"gHZ" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+"gxk" = (
+/obj/machinery/camera/motion{
+ c_tag = "Non-Lethal Armory Motion Sensor";
dir = 4
},
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/bar)
-"gKd" = (
-/turf/open/floor/plasteel/red/side{
+/obj/effect/turf_decal/stripes/end{
dir = 8
},
+/turf/open/floor/plasteel,
+/area/security/armory)
+"gzC" = (
+/obj/machinery/door/airlock/maintenance/abandoned{
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"gAv" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/bulletproof{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/armor/bulletproof,
+/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/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/security/armory)
+"gDh" = (
+/obj/effect/spawner/lootdrop/keg,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"gEZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 2;
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
/area/security/brig)
+"gFz" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Control";
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/brig)
+"gLe" = (
+/obj/structure/falsewall,
+/obj/effect/turf_decal/delivery/white,
+/turf/open/floor/plasteel/dark,
+/area/security/execution/transfer)
"gLH" = (
/obj/machinery/door/airlock/external{
name = "External Access";
- req_access = null;
req_access_txt = "13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -52799,12 +52824,22 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"gUO" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/red/side{
+"gMn" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"gOI" = (
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"gUe" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/area/security/brig)
+/turf/open/floor/wood,
+/area/maintenance/bar)
"gWd" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -52815,6 +52850,17 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
+"gXF" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"gZt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
"gZG" = (
/obj/structure/closet/crate/freezer/surplus_limbs,
/obj/item/reagent_containers/glass/beaker/synthflesh,
@@ -52822,17 +52868,15 @@
dir = 8
},
/area/medical/sleeper)
-"hbX" = (
-/obj/machinery/flasher{
- id = "brigentry";
- pixel_y = -28
+"gZP" = (
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
+/obj/item/crowbar,
+/obj/item/device/electropack/shockcollar,
+/turf/open/floor/plating,
+/area/maintenance/bar)
"hcE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -52850,106 +52894,132 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"hgP" = (
-/obj/structure/closet/bombcloset/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/space)
-"hmW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"hyz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
+"hgD" = (
+/obj/structure/table/wood/poker,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"hjg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
},
+/turf/closed/wall,
+/area/maintenance/fore/secondary)
+"hjA" = (
+/obj/structure/table/wood/poker,
+/obj/item/coin/iron,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"hot" = (
+/obj/structure/closet/secure_closet/security/sec,
/obj/effect/turf_decal/bot{
dir = 2
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"hCi" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"hDa" = (
-/obj/machinery/light{
- dir = 8
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"hua" = (
+/obj/machinery/power/emitter/anchored{
+ dir = 4;
+ state = 2
},
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "0-8"
},
-/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"hMa" = (
-/obj/structure/cable{
- icon_state = "1-2"
+"hvT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"hxi" = (
+/obj/machinery/door_timer{
+ id = "Cell 3";
+ name = "Cell 3";
+ pixel_y = -32
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"hQd" = (
-/turf/open/space/basic,
-/area/engine/engineering)
-"hSW" = (
-/turf/open/floor/plasteel/red/side,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner,
/area/security/brig)
-"ieW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ilg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"ilT" = (
+"hGa" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"hNf" = (
+/obj/machinery/door_timer{
+ id = "Cell 2";
+ name = "Cell 2";
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/red/corner,
+/area/security/brig)
+"hNK" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/device/assembly/signaler,
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"hOS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/maintenance/fore/secondary)
+"hWi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/security/armory)
+/area/hallway/primary/fore)
+"igd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"ipt" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/brig)
"ipA" = (
/obj/machinery/droneDispenser,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"iqO" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Port Aft";
- dir = 1;
- network = list("engine")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"itG" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/obj/item/pen,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"iun" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+"ixt" = (
+/turf/closed/wall,
+/area/maintenance/bar)
+"izN" = (
+/obj/effect/landmark/secequipment,
+/obj/effect/turf_decal/bot{
+ dir = 2
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"izg" = (
-/obj/structure/table/wood/poker,
-/obj/item/coin/iron,
-/turf/open/floor/wood,
-/area/maintenance/bar)
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"iCl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/armory)
"iEJ" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod One"
@@ -52959,6 +53029,33 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
+"iGM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"iJY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/fore/secondary)
+"iMb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
"iNn" = (
/obj/machinery/camera{
c_tag = "Kitchen Cold Room"
@@ -52967,25 +53064,6 @@
/obj/structure/reagent_dispensers/cooking_oil,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"iNt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"iZz" = (
-/obj/structure/table/wood/poker,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"jaa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
"jbf" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -53023,33 +53101,34 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"jvH" = (
+"jtk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
- icon_state = "2-4"
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"jvX" = (
-/obj/machinery/door_timer{
- id = "Cell 2";
- name = "Cell 2";
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/red/corner,
/area/security/brig)
-"jwO" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"jyX" = (
-/obj/structure/sign/warning/securearea,
+"juO" = (
/turf/closed/wall/r_wall,
-/area/engine/engineering)
+/area/security/armory)
+"jve" = (
+/obj/machinery/flasher{
+ id = "Cell 3";
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"jwH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/security/armory)
"jAD" = (
/obj/structure/grille,
/turf/open/floor/plating/airless,
@@ -53079,21 +53158,26 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"jKI" = (
+"jIZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/space)
+"jJk" = (
+/obj/structure/closet/l3closet/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/space/nearstation)
+"jLS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/bar)
+"jMF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/brig)
+/turf/closed/wall,
+/area/science/circuit)
"jSO" = (
/obj/machinery/light{
dir = 4
@@ -53112,13 +53196,40 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"jZh" = (
-/obj/structure/grille,
+"jZr" = (
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"jZE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"kdG" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"keZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
},
/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/area/space/nearstation)
"khb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -53129,7 +53240,6 @@
/area/hallway/secondary/service)
"khB" = (
/obj/machinery/door/airlock/external{
- cyclelinkeddir = 0;
req_access_txt = "13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -53137,14 +53247,6 @@
},
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
-"kkQ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
"knx" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
@@ -53165,46 +53267,65 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"kyO" = (
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/pen,
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/obj/structure/table/wood,
-/turf/open/floor/wood,
+"kpR" = (
+/obj/structure/sign/poster/official/no_erp,
+/turf/closed/wall,
/area/maintenance/bar)
-"kDA" = (
-/obj/effect/turf_decal/stripes/line{
+"kwd" = (
+/obj/machinery/flasher{
+ id = "brigentry";
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair{
dir = 1
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/security/armory)
-"kEo" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"kzT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/obj/machinery/newscaster{
- pixel_x = 30
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"kFU" = (
+/obj/machinery/light{
+ dir = 8
},
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"kNw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
+/obj/structure/grille,
/turf/open/floor/plating/airless,
-/area/space/nearstation)
+/area/engine/engineering)
+"kMh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"kNd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"kOw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
"kPd" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/structure/cable{
@@ -53212,6 +53333,9 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hallway/secondary/service)
+"kPj" = (
+/turf/closed/wall,
+/area/space)
"kQk" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -53220,11 +53344,212 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"kQE" = (
+/turf/open/space/basic,
+/area/engine/engineering)
"kSb" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"kTn" = (
+"kTd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"kVQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"kWK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/maintenance/bar)
+"kXn" = (
+/obj/structure/window/reinforced,
+/obj/vehicle/ridden/secway,
+/obj/item/key/security,
+/obj/machinery/door/window/eastleft{
+ name = "Secway Docking Port"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/showroomfloor,
+/area/space)
+"leY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/brig)
+"lju" = (
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"lnG" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"luk" = (
+/obj/structure/table/wood/poker,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/storage/pill_bottle/dice,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"lyr" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"lAB" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall,
+/area/science/circuit)
+"lIT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"lLs" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/cryopod";
+ dir = 4;
+ name = "Cryogenics APC";
+ pixel_x = 24
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/crew_quarters/cryopod)
+"lMg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"lMN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"lQG" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/science/circuit)
+"mlU" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"mpW" = (
+/obj/structure/sign/poster/random{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"mrA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"mrH" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/maintenance/bar)
+"myV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/brig)
+"mMr" = (
+/obj/machinery/vending/games{
+ name = "\improper Good 'Clean' Fun"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"mNi" = (
+/obj/machinery/light_switch{
+ pixel_x = -20
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"mRe" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"naK" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"nbx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ndh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Armory Motion Sensor";
+ dir = 2;
+ name = "motion-sensitive security camera"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"ngv" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"npy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"nqq" = (
/obj/machinery/light{
dir = 4
},
@@ -53234,236 +53559,9 @@
icon_state = "wood-broken6"
},
/area/maintenance/bar)
-"kXw" = (
-/obj/machinery/vending/games{
- name = "\improper Good 'Clean' Fun"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lik" = (
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/brig)
-"lxM" = (
-/obj/structure/sign/poster/random{
- pixel_y = -32
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lza" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin,
-/obj/item/pen/blue,
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/crew_quarters/cryopod)
-"lzJ" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lAB" = (
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall,
-/area/science/circuit)
-"lBd" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/space)
-"lFR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lMg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"lNK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"lQG" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/science/circuit)
-"lWm" = (
-/obj/machinery/door/window/brigdoor/security/cell{
- id = "Cell 3";
- name = "Cell 3"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"lWz" = (
-/turf/closed/wall,
-/area/maintenance/bar)
-"mhD" = (
-/obj/machinery/cryopod{
- tag = "icon-cryopod-open (EAST)";
- icon_state = "cryopod-open";
- dir = 4
- },
-/turf/open/floor/noslip,
-/area/crew_quarters/cryopod)
-"mnl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"mnG" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/armor/bulletproof,
-/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/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/security/armory)
-"mnX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"muS" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"mxj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"myd" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"mzz" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"mHd" = (
-/obj/structure/falsewall,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"mLm" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"mMg" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"mNi" = (
-/obj/machinery/light_switch{
- pixel_x = -20
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"mQs" = (
-/obj/machinery/power/emitter/anchored{
- dir = 4;
- state = 2
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"mRe" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"mSu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/fore/secondary)
-"mWO" = (
-/turf/open/floor/plating/airless,
-/area/space)
-"mXj" = (
+"nsg" = (
/turf/open/floor/plasteel/showroomfloor,
/area/space)
-"mXs" = (
-/turf/open/floor/plasteel,
-/area/security/execution/transfer)
-"nnM" = (
-/turf/closed/wall/r_wall,
-/area/security/armory)
-"nsq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 8
- },
-/area/security/brig)
-"nwx" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
"nxv" = (
/obj/machinery/power/apc{
name = "Construction Area APC";
@@ -53475,14 +53573,119 @@
},
/turf/open/floor/plating,
/area/construction)
-"nys" = (
-/obj/machinery/flasher{
- id = "Cell 4";
- pixel_x = -28
+"nFy" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Armory Desk";
+ req_access_txt = "3"
},
-/turf/open/floor/plasteel/floorgrime,
+/obj/machinery/door/window/southleft{
+ name = "Reception Desk";
+ req_access_txt = "63"
+ },
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
/area/security/brig)
-"nAv" = (
+"nGl" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Starboard Aft";
+ dir = 1;
+ network = list("engine")
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"nGt" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"nRG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"nTj" = (
+/obj/machinery/chem_dispenser/drinks/beer,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"nTO" = (
+/obj/structure/window/reinforced,
+/obj/vehicle/ridden/secway,
+/obj/item/key/security,
+/obj/machinery/door/window/eastleft{
+ name = "Secway Docking Port"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/showroomfloor,
+/area/space/nearstation)
+"nWc" = (
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/bar";
+ dir = 2;
+ name = "Maintenance Bar APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"oce" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"oku" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"onr" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"oqW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"oHU" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"oKG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"oRN" = (
/obj/structure/table,
/obj/item/grenade/barrier{
pixel_x = 4
@@ -53496,169 +53699,6 @@
},
/turf/open/floor/plasteel/dark,
/area/security/armory)
-"nGs" = (
-/obj/item/lighter/greyscale,
-/obj/effect/decal/cleanable/semen{
- desc = "Blech.";
- name = "dried semen"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/bar)
-"nGt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"nHg" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"nLS" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"nRG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"nYI" = (
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/item/crowbar,
-/obj/item/device/electropack/shockcollar,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"oaS" = (
-/obj/effect/landmark/start/station_engineer,
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"obC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"ody" = (
-/obj/effect/spawner/lootdrop/keg,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"ofN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"olb" = (
-/obj/structure/window/reinforced,
-/obj/vehicle/ridden/secway,
-/obj/item/key/security,
-/obj/machinery/door/window/eastleft{
- name = "Secway Docking Port"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/showroomfloor,
-/area/space/nearstation)
-"onN" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"oru" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"otR" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"owf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 1;
- id_tag = "lobbyairlock";
- name = "Security Lobby";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"oyS" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/brig)
-"oAQ" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"oHi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"oHU" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"oQP" = (
-/obj/machinery/flasher{
- id = "Cell 3";
- pixel_x = -28
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
"oUh" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -53666,82 +53706,45 @@
/obj/machinery/disposal/bin,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"oUs" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- req_access_txt = "11"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
+"oYx" = (
+/obj/machinery/light/small{
dir = 8
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"oZl" = (
-/turf/open/floor/plasteel/purple/side{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
- },
-/area/crew_quarters/cryopod)
-"pdR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"plH" = (
-/obj/machinery/door/window/brigdoor/security/cell{
- dir = 4;
- id = "Secure Cell";
- name = "Secure Cell"
- },
-/obj/machinery/door/window/brigdoor/security/cell{
- dir = 8;
- id = "Secure Cell";
- name = "Secure Cell"
- },
-/obj/effect/turf_decal/stripes/white/corner{
+/obj/machinery/cryopod{
+ tag = "icon-cryopod-open (EAST)";
+ icon_state = "cryopod-open";
dir = 4
},
-/obj/effect/turf_decal/stripes/white/corner{
- dir = 8
+/turf/open/floor/noslip,
+/area/crew_quarters/cryopod)
+"oYK" = (
+/obj/structure/table/wood/poker,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/dark/side{
- dir = 8
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"psf" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"pxL" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
-"plY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"pmD" = (
-/turf/open/space/basic,
-/area/space/nearstation)
-"pzG" = (
-/obj/structure/sign/poster/random{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
+"pGl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
/area/maintenance/bar)
-"pAu" = (
-/obj/machinery/vending/kink,
-/turf/open/floor/wood,
-/area/maintenance/bar)
"pHl" = (
/obj/structure/table,
/obj/item/storage/box/beakers{
@@ -53770,395 +53773,74 @@
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"pML" = (
-/obj/effect/spawner/lootdrop/keg,
-/turf/open/floor/wood,
-/area/maintenance/bar)
+"pIt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"pMw" = (
+/obj/structure/table,
+/obj/item/storage/box/firingpins,
+/obj/item/storage/box/firingpins,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
"pNx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/science/misc_lab)
-"pND" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot{
- dir = 2
+"pWv" = (
+/obj/structure/bed,
+/obj/item/bedsheet/grey,
+/obj/effect/decal/cleanable/semen{
+ desc = "Blech.";
+ name = "dried semen"
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"pNS" = (
-/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"pRh" = (
-/obj/structure/sign/poster/random{
- pixel_y = -32
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
+/obj/effect/spawner/lootdrop/costume,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
},
/area/maintenance/bar)
-"pXY" = (
-/obj/effect/turf_decal/stripes/white/line,
-/obj/effect/turf_decal/stripes/white/corner{
- dir = 1
+"pWK" = (
+/obj/item/shard,
+/obj/item/wirecutters,
+/obj/item/wallframe/camera,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
},
-/obj/machinery/door_timer{
- id = "Secure Cell";
- name = "Secure Cell";
- pixel_y = -32
+/area/maintenance/bar)
+"qcU" = (
+/obj/machinery/flasher{
+ id = "Cell 4";
+ pixel_x = -28
},
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
"qeQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"qiH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
+"qgr" = (
+/obj/structure/falsewall,
/turf/open/floor/plating,
/area/maintenance/bar)
-"qkd" = (
+"qiu" = (
/turf/open/floor/plasteel/red/side{
- dir = 6
+ dir = 10
},
/area/security/brig)
-"qli" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/space/nearstation)
-"qpv" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/autolathe,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"qqN" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/cryopod{
- tag = "icon-cryopod-open (EAST)";
- icon_state = "cryopod-open";
- dir = 4
- },
-/turf/open/floor/noslip,
-/area/crew_quarters/cryopod)
-"quv" = (
-/obj/machinery/flasher{
- id = "Cell 2";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"quH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/security/armory)
-"quT" = (
-/obj/structure/lattice,
-/obj/structure/grille/broken,
-/turf/open/space/basic,
-/area/space/nearstation)
-"qyA" = (
-/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"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"qWq" = (
-/turf/closed/wall,
-/area/space)
-"rhJ" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/device/assembly/signaler,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"riY" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Starboard Aft";
- dir = 1;
- network = list("engine")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"rmX" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"ruZ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/security/armory)
-"rvK" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"ryt" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Brig Control";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/brig)
-"rDb" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/drone,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
-"rKP" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/construction)
-"rMY" = (
+"qkH" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"rNn" = (
-/obj/machinery/power/grounding_rod,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"rWu" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/bar)
-"rZV" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"saK" = (
-/obj/structure/closet/crate,
-/obj/item/target/alien,
-/obj/item/target/alien,
-/obj/item/target/clown,
-/obj/item/target/clown,
-/obj/item/target/syndicate,
-/obj/item/target/syndicate,
-/obj/item/gun/energy/laser/practice,
-/obj/item/gun/energy/laser/practice,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"spp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"srd" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
+/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"srs" = (
-/obj/structure/chair/stool,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"srA" = (
-/turf/open/floor/plasteel/purple/side,
+"qnI" = (
+/turf/closed/wall,
/area/crew_quarters/cryopod)
-"sxs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table,
-/obj/item/shovel/spade,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"sAz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"sGJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"sHa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/brig)
-"sHr" = (
-/obj/structure/falsewall,
-/obj/effect/turf_decal/delivery/white,
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
-"sIY" = (
-/obj/machinery/door/airlock/maintenance/abandoned{
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"sLv" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"sOs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance/abandoned,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"sPi" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/security/glass{
- cyclelinkeddir = 1;
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
- },
-/area/security/brig)
-"sSW" = (
-/obj/structure/chair/office/light,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"sWi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"sXy" = (
-/obj/machinery/door/airlock/external{
- name = "Security External Airlock";
- req_access_txt = "63"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/security/main)
-"tal" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/hallway/secondary/service)
-"tdl" = (
-/obj/machinery/camera/motion{
- c_tag = "Non-Lethal Armory Motion Sensor";
- dir = 4
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/armory)
-"tdt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore/secondary)
-"thu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"tkF" = (
-/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{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
-"tBz" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fore/secondary)
-"tDP" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/space/nearstation)
-"tHc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"tMl" = (
-/obj/effect/turf_decal/loading_area,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"tPb" = (
+"qpk" = (
/obj/structure/window/reinforced,
/obj/machinery/door/window/eastleft{
name = "Cyborg Docking Port"
@@ -54167,347 +53849,70 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"tQz" = (
-/obj/structure/sign/poster/official/no_erp,
-/turf/closed/wall,
-/area/maintenance/bar)
-"tYV" = (
-/obj/structure/table/wood/poker,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"qpv" = (
+/obj/machinery/light{
dir = 4
},
-/obj/item/storage/pill_bottle/dice,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"uaT" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/drinkingglasses,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"ugZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ujc" = (
-/obj/machinery/vending/cigarette,
+/obj/machinery/autolathe,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"quT" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space/basic,
+/area/space/nearstation)
+"qwA" = (
+/obj/structure/closet/bombcloset/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/space)
+"qxB" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"qAP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/brig)
-"ujp" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+"qAZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"umq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"umu" = (
-/obj/machinery/door_timer{
- id = "Cell 3";
- name = "Cell 3";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner,
-/area/security/brig)
-"uoB" = (
-/obj/structure/table/reinforced,
-/obj/item/device/multitool,
-/obj/item/screwdriver,
-/obj/machinery/camera{
- c_tag = "Circuitry Lab North";
- network = list("ss13","rd")
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"upn" = (
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"utQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"uuA" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/storage/toolbox/electrical{
- pixel_x = -2
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"uvc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"uvy" = (
-/turf/closed/wall/r_wall,
-/area/space)
-"uAt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"uMX" = (
/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"uNu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/science/circuit)
-"uTi" = (
-/obj/structure/table/reinforced,
-/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"
- },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"qBe" = (
/obj/item/paper_bin{
pixel_x = -3;
pixel_y = 7
},
-/obj/item/pen{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/brig)
-"uVS" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"vaY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/item/pen,
+/obj/machinery/newscaster{
+ pixel_x = 30
},
+/obj/structure/table/wood,
/turf/open/floor/wood,
/area/maintenance/bar)
-"vbD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "EVA Storage";
- req_access_txt = "18"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"vie" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"vxh" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 8;
- name = "8maintenance loot spawner"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"vzp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"vAM" = (
-/obj/item/restraints/handcuffs/fake,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"vCb" = (
-/obj/machinery/rnd/production/techfab/department/service,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"vCt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"vHQ" = (
+"qCC" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"vNJ" = (
-/obj/machinery/vending/clothing,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"vPg" = (
-/obj/structure/disposalpipe/segment{
+"qEl" = (
+/obj/machinery/cryopod{
+ tag = "icon-cryopod-open (EAST)";
+ icon_state = "cryopod-open";
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore/secondary)
-"vPE" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/libraryscanner,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"vRb" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"vXR" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"whS" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"wjf" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/closet/secure_closet/brig{
- id = "Secure Cell";
- name = "Secure Cell Locker"
- },
-/obj/effect/turf_decal/stripes/white/end{
- dir = 4
- },
-/obj/effect/turf_decal/delivery/white,
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
-"wkN" = (
-/turf/closed/wall,
-/area/science/circuit)
-"wqO" = (
-/obj/structure/rack,
-/obj/item/gun/energy/e_gun/dragnet,
-/obj/item/gun/energy/e_gun/dragnet,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/security/armory)
-"wrp" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"wrI" = (
-/obj/machinery/door/poddoor/shutters{
- id = "lowsecarmory";
- name = "Non-Lethal Armoury Shutter"
- },
-/obj/machinery/button/door{
- id = "lowsecarmory";
- name = "Non-Lethal Armory Shutters";
- pixel_y = 26;
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/security/main)
-"wvX" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light,
-/obj/item/stock_parts/cell/super,
-/obj/item/stock_parts/cell/super,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/floor/plasteel/white,
-/area/science/circuit)
-"wBd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/hallway/secondary/service)
-"wMS" = (
+/turf/open/floor/noslip,
+/area/crew_quarters/cryopod)
+"qIW" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/riot{
pixel_x = -3;
@@ -54539,75 +53944,163 @@
/obj/effect/turf_decal/bot_white,
/turf/open/floor/plasteel/dark,
/area/security/armory)
-"wUY" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hallway/secondary/service)
-"wXR" = (
+"qRA" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"qSw" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
/turf/open/floor/plasteel,
/area/security/armory)
-"xdq" = (
-/obj/structure/closet/l3closet/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/space/nearstation)
-"xgX" = (
-/obj/item/shard,
-/obj/item/wirecutters,
-/obj/item/wallframe/camera,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/bar)
-"xhV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"rcD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
- icon_state = "2-8"
+/turf/closed/wall/r_wall,
+/area/science/circuit)
+"rfW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/disposal/incinerator)
+"rmX" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/beer,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"rvj" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"rxy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ryS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/armory)
+"rKP" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
/turf/open/floor/plating,
/area/construction)
-"xiw" = (
-/obj/machinery/door/airlock{
- name = "Service Hall";
- req_access_txt = "0";
- req_one_access_txt = "25;26;35;28"
+"rUy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"rZr" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"saK" = (
+/obj/structure/closet/crate,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"shN" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/drone,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"sjj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"slk" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/maintenance/department/medical/morgue)
+"smH" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/corner,
+/turf/open/floor/plasteel/dark,
+/area/security/execution/transfer)
+"srG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ssm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 2;
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/brig)
+"stN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"sxs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/item/shovel/spade,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"sCq" = (
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/hallway/secondary/service)
-"xkI" = (
-/obj/structure/chair/stool,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
+/area/maintenance/fore/secondary)
+"sHc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
},
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"sHF" = (
+/obj/machinery/door/airlock/maintenance/abandoned{
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
/area/maintenance/bar)
-"xug" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"xwc" = (
-/obj/structure/chair/stool/bar,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"xwS" = (
+"sJq" = (
/obj/effect/turf_decal/stripes/white/line{
dir = 8
},
@@ -54616,40 +54109,488 @@
},
/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
-"xIa" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/grille_or_trash,
+"sLv" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"xJs" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"sOb" = (
+/obj/effect/spawner/lootdrop/keg,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"sOs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/abandoned,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"sQZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"sRN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"sSW" = (
+/obj/structure/chair/office/light,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"sXy" = (
+/obj/machinery/door/airlock/external{
+ name = "Security External Airlock";
+ req_access_txt = "63"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"sZJ" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Port Aft";
+ dir = 1;
+ network = list("engine")
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"xMh" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "1-2"
+"tal" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"tfS" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"tkQ" = (
+/obj/machinery/light{
+ dir = 1
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"tnF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"tnU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/maintenance/bar)
+"tsp" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/brig)
+"tuE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"tvD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"tym" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 1;
+ id_tag = "lobbyairlock";
+ name = "Security Lobby";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"tzD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/maintenance/bar)
+"tMl" = (
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"tOq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"tPR" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/brig)
+"tXL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"tYL" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"ufy" = (
+/obj/structure/grille,
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"xTa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
+"ufQ" = (
+/obj/structure/rack,
+/obj/item/gun/energy/e_gun/dragnet,
+/obj/item/gun/energy/e_gun/dragnet,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/security/armory)
+"ujr" = (
+/obj/structure/chair/stool,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -35
},
/turf/open/floor/wood,
/area/maintenance/bar)
-"xVd" = (
-/obj/structure/bed,
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
+"unR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"uoB" = (
+/obj/structure/table/reinforced,
+/obj/item/device/multitool,
+/obj/item/screwdriver,
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab North";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"uwt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"uBh" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"uDj" = (
+/obj/machinery/vending/kink,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"uDt" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 1;
+ id_tag = "lobbyairlock";
+ name = "Security Lobby";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"uJy" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"uLG" = (
+/turf/open/floor/plasteel/purple/side,
+/area/crew_quarters/cryopod)
+"uNu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
+/area/science/circuit)
+"uPT" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"uQi" = (
+/obj/machinery/light/small{
+ dir = 8;
+ light_color = "#fff4bc"
+ },
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"uQv" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"uRU" = (
+/obj/structure/sign/poster/random{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"uVS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"vbD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "EVA Storage";
+ req_access_txt = "18"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"veF" = (
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"vfX" = (
+/obj/machinery/power/grounding_rod,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"vhS" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"vvB" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"vxh" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 8;
+ name = "8maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"vxp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"vzp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vCb" = (
+/obj/machinery/rnd/production/techfab/department/service,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"vCt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vEu" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"vLG" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/brig)
+"vPE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/libraryscanner,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vSJ" = (
+/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{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"vSO" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/brig)
+"vUD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/abandoned{
+ req_access_txt = "0"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"vVO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"vXb" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/corner{
+ dir = 1
+ },
+/obj/machinery/door_timer{
+ id = "Secure Cell";
+ name = "Secure Cell";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
-"xZZ" = (
+"vXP" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space/basic,
+/area/space)
+"vYq" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/brig)
+"vYD" = (
+/obj/machinery/door/window/brigdoor/security/cell{
+ id = "Cell 3";
+ name = "Cell 3"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"wbT" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/maintenance/bar)
+"wdS" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -54665,38 +54606,180 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"yam" = (
-/obj/effect/landmark/start/atmospheric_technician,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"yck" = (
+"wkN" = (
+/turf/closed/wall,
+/area/science/circuit)
+"wnz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"wnQ" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"wrp" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"wvX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"wBd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/hallway/secondary/service)
+"wCt" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/brig)
+"wCE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"wHz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"wMN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "seclobby";
+ name = "security shutters"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"wNO" = (
/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"wOb" = (
+/obj/structure/lattice,
+/obj/structure/grille,
/turf/open/space,
/area/space)
+"wUY" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/secondary/service)
+"xaR" = (
+/obj/structure/bed,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/turf/open/floor/plasteel,
+/area/security/execution/transfer)
+"xbv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"xhV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/construction)
+"xiw" = (
+/obj/machinery/door/airlock{
+ name = "Service Hall";
+ req_one_access_txt = "25;26;35;28"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/service)
+"xyL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/maintenance/abandoned{
+ req_access_txt = "0"
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/bar)
+"xEu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"xIa" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
+"xIZ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/security/glass{
+ cyclelinkeddir = 1;
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/brig)
+"xPO" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -2
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"xUx" = (
+/turf/open/floor/plasteel/dark,
+/area/security/processing)
+"ych" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"ycu" = (
/obj/structure/cable{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"yeT" = (
-/obj/effect/landmark/secequipment,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"yfv" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/security/execution/transfer)
-"ykh" = (
-/obj/machinery/flasher/portable,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/security/armory)
(1,1,1) = {"
aaa
@@ -74131,7 +74214,7 @@ aaa
aaa
bCq
bPS
-bRd
+aad
bPS
bPS
bCq
@@ -76189,20 +76272,20 @@ bCq
bPY
cOw
bCq
-lWz
-lWz
-lWz
-lWz
-lWz
-daq
-lWz
-lWz
-lWz
-lWz
-lWz
-lWz
-lWz
-lWz
+ixt
+ixt
+ixt
+ixt
+ixt
+gbY
+ixt
+ixt
+ixt
+ixt
+ixt
+ixt
+ixt
+ixt
bUs
bLv
aaa
@@ -76446,20 +76529,20 @@ bCq
bPX
bRg
bRg
-lWz
-nHg
+ixt
+onr
bVG
-utQ
-vRb
-nHg
-pML
-lWz
-nHg
-pzG
+sQZ
+gls
+onr
+gDh
+ixt
+onr
+mpW
bVG
-nHg
-ody
-lWz
+onr
+sOb
+ixt
bUs
bLv
aaa
@@ -76703,20 +76786,20 @@ bLv
bQa
bHE
bHE
-lWz
-iun
-ilg
-gHZ
-uvc
-sGJ
-uvc
-pNS
-uvc
-uvc
-rMY
-eGa
-lxM
-lWz
+ixt
+wCE
+stN
+kWK
+oku
+tnU
+oku
+gzC
+oku
+oku
+npy
+wbT
+uRU
+ixt
bUs
bLv
aaf
@@ -76960,20 +77043,20 @@ bLv
bPZ
bHE
bHE
-sIY
-vaY
-whS
-gBe
-gnt
-xwc
-lFR
-jaa
-lFR
-gEu
-ujp
+sHF
+rUy
+kdG
+uBh
+tYL
+lyr
+xbv
+xyL
+xbv
+jLS
+efZ
cCa
-nHg
-lWz
+onr
+ixt
bUs
bLv
aaa
@@ -77217,20 +77300,20 @@ bLv
bHE
bHE
bSs
-lWz
-umq
-vXR
-rvK
-jwO
-vXR
-nHg
-tQz
-rWu
+ixt
+tzD
+wnQ
+dzh
+rvj
+wnQ
+onr
+kpR
+mrH
cCa
-fXR
-iZz
-muS
-lWz
+oYK
+hgD
+dpg
+ixt
bUs
bLv
aaa
@@ -77474,20 +77557,20 @@ bCq
bHE
bRh
bLu
-lWz
-jvH
-kEo
-thu
-xug
-lNK
-fNa
-lWz
-nHg
-xkI
-fXR
-iZz
-srs
-lWz
+ixt
+iMb
+fNf
+kVQ
+pGl
+jZE
+nWc
+ixt
+onr
+gMn
+oYK
+hgD
+ujr
+ixt
bUs
bLv
aaf
@@ -77731,20 +77814,20 @@ bCq
bOK
bCq
bCq
-lWz
-mxj
-fIx
-upn
-cmR
-uaT
-lWz
-lWz
-nHg
+ixt
+vUD
+tnF
+nTj
+tfS
+naK
+ixt
+ixt
+onr
cCa
-tYV
-izg
+luk
+hjA
cCa
-lWz
+ixt
bUs
bLv
aaa
@@ -77908,13 +77991,13 @@ abc
aea
aeH
aft
-sHr
-fmW
-xwS
-yfv
+gLe
+goA
+sJq
+pxL
abc
-hCi
-hCi
+wNO
+wNO
aaa
aiU
aln
@@ -77989,19 +78072,19 @@ bHE
bLv
aaa
bLv
-qiH
-fIx
-lWz
-lWz
-lWz
-lWz
-nHg
-nHg
-nHg
-lzJ
+dLh
+tnF
+ixt
+ixt
+ixt
+ixt
+onr
+onr
+onr
+gUe
cCa
-pRh
-lWz
+fYm
+ixt
bUs
bLv
aaa
@@ -78167,18 +78250,18 @@ aeJ
afw
abc
abc
-eBn
-pXY
+smH
+vXb
abc
aaf
aaf
aaf
aiU
-dBk
+xUx
aiU
aaa
aiU
-dBk
+xUx
aiU
aaf
aaf
@@ -78246,19 +78329,19 @@ bHE
bLv
aaf
bLv
-qiH
-fIx
-vAM
-nYI
-nGs
-mHd
-nHg
-rWu
-eGa
-xTa
-nHg
-nHg
-lWz
+dLh
+tnF
+fRn
+gZP
+eng
+qgr
+onr
+mrH
+wbT
+fTt
+onr
+onr
+ixt
bUs
bLv
aaf
@@ -78274,7 +78357,7 @@ cjJ
aaa
aaa
crn
-pmD
+aaa
aaa
aaa
aaa
@@ -78424,8 +78507,8 @@ aeI
afv
agf
abc
-wjf
-plH
+dUH
+fbn
abc
aiT
aiT
@@ -78503,19 +78586,19 @@ bLv
bCq
aaa
bLv
-qiH
-fIx
-xgX
-cKh
-rhJ
-lWz
-vNJ
-cEm
-kyO
-kTn
-kXw
-pAu
-lWz
+dLh
+tnF
+pWK
+pWv
+hNK
+ixt
+fyQ
+gpQ
+qBe
+nqq
+mMr
+uDj
+ixt
bUs
bCq
aaa
@@ -78531,7 +78614,7 @@ cjJ
aaa
aaa
crn
-pmD
+aaa
aaa
aaa
aaa
@@ -78681,9 +78764,9 @@ aeL
afy
agh
abc
-mXs
-mXs
-mXs
+fMq
+fMq
+fMq
aiV
ajs
akb
@@ -78761,17 +78844,17 @@ aaa
aaa
bTB
bUv
-obC
-oru
-oru
-oru
-oru
-oru
-oru
-oru
-oru
-oru
-oru
+mrA
+gpX
+gpX
+gpX
+gpX
+gpX
+gpX
+gpX
+gpX
+gpX
+gpX
car
bUs
bCq
@@ -78788,7 +78871,7 @@ cjJ
aaf
aaf
cig
-pmD
+aaa
aaa
aaa
aaa
@@ -78938,9 +79021,9 @@ aeK
afx
agg
abc
-mXs
-xVd
-mXs
+fMq
+xaR
+fMq
aiV
ajr
aka
@@ -79195,9 +79278,9 @@ aeN
afA
afA
afA
-mXs
-mXs
-mXs
+fMq
+fMq
+fMq
aiV
aju
akd
@@ -79559,7 +79642,7 @@ cgR
cgR
cqN
cro
-pmD
+aaa
aaa
aaa
aaa
@@ -79816,7 +79899,7 @@ ciN
cji
cDZ
crr
-pmD
+crJ
aaa
aaa
aaa
@@ -80073,7 +80156,7 @@ cnv
cDB
cqP
crq
-pmD
+crJ
aaa
aaa
aaa
@@ -80209,7 +80292,7 @@ aak
aap
aay
aaD
-aat
+aau
aat
aat
aat
@@ -80344,7 +80427,7 @@ gXs
gXs
gXs
gXs
-hCi
+wNO
aaa
aaa
aaa
@@ -80587,22 +80670,22 @@ cpX
cqz
cqQ
ccw
-pmD
+crJ
aaa
aaa
-uvy
-uvy
-uvy
+qRA
+qRA
+qRA
aaa
aaa
aaa
aaa
aaa
-uvy
-uvy
-uvy
-hCi
-hCi
+qRA
+qRA
+qRA
+wNO
+wNO
aaa
aaa
aaa
@@ -80844,24 +80927,24 @@ clJ
cig
cig
ccw
-pmD
-pmD
-uvy
-uvy
-uvy
-uvy
-uvy
+crJ
+crJ
+qRA
+qRA
+qRA
+qRA
+qRA
aaa
aaa
aaa
-uvy
-uvy
-uvy
-uvy
-uvy
-hCi
-hCi
-hCi
+qRA
+qRA
+qRA
+qRA
+qRA
+wNO
+wNO
+wNO
aaa
aaa
aaa
@@ -81095,7 +81178,7 @@ ccw
ccw
ccw
cnZ
-oHi
+srG
cpt
cpt
cpt
@@ -81117,8 +81200,8 @@ ccw
ccw
ccw
ccw
-uvy
-hCi
+qRA
+wNO
aaa
aaa
aaa
@@ -81259,7 +81342,7 @@ auj
akl
akO
alx
-mnX
+qkH
amg
aiX
anw
@@ -81354,11 +81437,11 @@ cnt
cob
coL
cDo
-oaS
+dSv
cgR
cqT
ccw
-crJ
+uQi
ccw
csb
cFn
@@ -81370,12 +81453,12 @@ ccw
ccw
cGE
cFn
-jZh
-mzz
-mzz
+eoT
+ych
+ych
ccw
-uvy
-yck
+qRA
+uJy
aaa
aaa
aaa
@@ -81613,26 +81696,26 @@ coK
cpu
cMm
ckH
-uAt
-hMa
+sjj
+jZr
crK
cEK
csa
-gre
-mQs
-gre
+gOI
+hua
+gOI
cGr
-vHQ
-hDa
-vHQ
-mLm
-gre
-mQs
-gre
-gre
+qCC
+kFU
+qCC
+vEu
+gOI
+hua
+gOI
+gOI
ccw
-uvy
-hCi
+qRA
+wNO
aaa
aaa
aaa
@@ -81771,9 +81854,9 @@ aiF
agj
ajD
akm
-cxR
+iGM
aly
-quv
+veF
amQ
aiX
anw
@@ -81868,28 +81951,28 @@ cgR
cnZ
chF
ciO
-oaS
+dSv
cgR
cqT
ccw
cig
ccw
cFb
-gre
+gOI
cFI
-gre
-gre
-gre
-gre
-gre
-gre
-gre
+gOI
+gOI
+gOI
+gOI
+gOI
+gOI
+gOI
cFI
-gre
-iqO
+gOI
+sZJ
ccw
-uvy
-fdi
+qRA
+vXP
aaa
aaa
aaa
@@ -82005,7 +82088,7 @@ aaa
aag
aaf
aai
-aau
+ngv
aaA
aaG
aaK
@@ -82030,7 +82113,7 @@ aja
akl
akP
alx
-mnX
+qkH
ami
aiX
anw
@@ -82123,30 +82206,30 @@ ceZ
clQ
cgR
cnZ
-oHi
+srG
cgR
cgR
cgR
cqT
-fFB
+mlU
cEs
-gre
-rNn
+gOI
+vfX
cAp
-xJs
+lIT
cAo
-xJs
+lIT
cAo
-xJs
+lIT
cAo
-xJs
-cQZ
-gre
-gre
-gre
+lIT
+hvT
+gOI
+gOI
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -82284,7 +82367,7 @@ agP
agP
aiz
ajg
-jvX
+hNf
akQ
agj
agj
@@ -82380,30 +82463,30 @@ cTd
ckF
ckF
cgK
-oHi
+srG
cgR
cgR
cgR
cqT
-fFB
+mlU
csP
-gre
-gre
+gOI
+gOI
cAq
-mWO
+cFJ
cSH
-mWO
+cFJ
cSH
-mWO
+cFJ
cSH
-mWO
+cFJ
cSH
-mWO
-gre
-gre
+cFJ
+gOI
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -82522,7 +82605,7 @@ aaa
aaa
aaf
aaf
-ddq
+fwk
aaf
aai
abi
@@ -82544,7 +82627,7 @@ ajb
ajF
akN
alw
-oQP
+jve
amQ
aiX
anw
@@ -82642,10 +82725,10 @@ cpx
cqd
cjc
cqU
-fFB
+mlU
csP
-gre
-rNn
+gOI
+vfX
cAq
cFK
aoV
@@ -82656,11 +82739,11 @@ aaa
aoV
aoV
cFK
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaf
aaa
aaa
@@ -82795,16 +82878,16 @@ agn
agR
agn
agR
-elx
+wnz
aiX
-ese
+oqW
akv
-lWm
-mnl
+vYD
+kTd
aww
amk
aiX
-ejX
+uwt
aov
aph
aqb
@@ -82897,7 +82980,7 @@ cnZ
cDh
cpy
ccw
-hyz
+kNd
ccw
ccw
cqY
@@ -82907,17 +82990,17 @@ cAq
aoV
aoV
aoV
-hCi
+wNO
aaf
aaa
aoV
aoV
aoV
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -83036,26 +83119,26 @@ aaa
aaa
aaa
aaf
-ddq
+fwk
aaf
-nnM
-ykh
-tdl
-myd
+juO
+aaT
+gxk
+qxB
aaZ
cpg
acv
adi
-dRy
+pMw
aaZ
aeW
-xZZ
+wdS
ahv
ahQ
aiI
aiH
ajI
-umu
+hxi
akQ
agj
agj
@@ -83155,10 +83238,10 @@ cDh
ccw
cqf
cqD
-oUs
+vvB
crs
cEv
-ugZ
+qAZ
cqY
cAq
aoV
@@ -83170,11 +83253,11 @@ aaa
aaa
aoV
aoV
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -83293,29 +83376,29 @@ aaa
aaa
aaa
aaf
-ddq
+fwk
aaf
-nnM
-ykh
-ruZ
-myd
+juO
+aaT
+dLs
+qxB
aaZ
acl
cxA
acL
-rDb
+shN
aaZ
agp
agT
ahx
ahS
aiK
-uTi
-ese
+nFy
+oqW
akm
akT
aly
-nys
+qcU
amQ
aiX
anw
@@ -83409,29 +83492,29 @@ cmL
cgR
cnZ
chX
-spp
+vVO
cqh
cqF
cra
crI
cEw
-ejb
+psf
cqY
cAq
aaa
aaa
aaa
-cDO
+pIt
cGU
-sWi
+unR
aaa
-hCi
+wNO
cFK
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aae
@@ -83550,12 +83633,12 @@ aaa
aaa
aaa
aaf
-ddq
+fwk
aaf
-nnM
-ykh
-fiq
-ofN
+juO
+aaT
+qSw
+gZt
aaZ
ack
adk
@@ -83572,13 +83655,13 @@ ajI
akl
akS
alx
-mnX
+qkH
amp
aiX
anS
aoy
-plY
-eoF
+hWi
+lMN
anz
anz
anz
@@ -83665,7 +83748,7 @@ clJ
cmL
cnv
cnZ
-eHD
+nbx
ccw
cqg
cqE
@@ -83673,22 +83756,22 @@ cqZ
crt
cMH
cAm
-mMg
+rxy
cMN
gXs
aaf
aaf
-kNw
+hGa
cGV
-tHc
+keZ
aaf
aaf
gXs
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -83807,14 +83890,14 @@ aaa
aaa
aaa
aaf
-ddq
+fwk
aaf
-nnM
-ykh
-ruZ
-otR
+juO
+aaT
+dLs
+cMP
aaZ
-cVk
+ndh
acM
adQ
cwM
@@ -83824,8 +83907,8 @@ agU
ahy
ahX
aiL
-cLr
-dUn
+tPR
+igd
akq
akQ
agj
@@ -83922,30 +84005,30 @@ ccw
cmN
cgR
cnZ
-eHD
-hyz
+nbx
+kNd
cqj
cSG
crb
cru
cEx
-oAQ
+dgt
cqY
cAq
cFK
-hCi
+wNO
aaa
-hmW
-sAz
-ieW
+sHc
+sRN
+vxp
aaa
aaa
aaa
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -84064,14 +84147,14 @@ aaa
aaa
aaa
aaf
-ddq
+fwk
aaf
-nnM
-nAv
-quH
-otR
+juO
+oRN
+jwH
+cMP
aaZ
-onN
+tkQ
coS
aet
cxA
@@ -84081,18 +84164,18 @@ agt
ahz
aie
agt
-ryt
-cYR
+gFz
+eTX
akp
akU
alz
aml
amT
aiX
-cKI
-owf
+tym
+uDt
apl
-tBz
+hjg
aqc
aqc
aqc
@@ -84179,7 +84262,7 @@ clM
cfz
cgR
cnZ
-eHD
+nbx
ccw
cqi
cMD
@@ -84198,11 +84281,11 @@ aaa
aaa
aoV
aoV
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -84321,14 +84404,14 @@ aaa
aaa
aaa
aaf
-ddq
+fwk
aaf
-nnM
-wqO
-wXR
-uMX
+juO
+ufQ
+iCl
+kMh
abQ
-nLS
+uQv
adj
arc
blT
@@ -84339,15 +84422,15 @@ cxk
aig
aiM
aiX
-eqj
-nsq
-eiQ
+fzH
+jtk
+tuE
alB
amn
amV
-tkF
+vSJ
aiG
-qkd
+wCt
aod
aqf
ahT
@@ -84357,11 +84440,11 @@ ahT
ahT
awn
axF
-tdt
-tdt
-tdt
-tdt
-amI
+sCq
+sCq
+sCq
+sCq
+lLs
anF
anF
aoa
@@ -84436,10 +84519,10 @@ cfa
cje
cgR
cnZ
-eHD
+nbx
cpy
ccw
-hyz
+kNd
ccw
ccw
cqY
@@ -84451,15 +84534,15 @@ aoV
aaa
aaa
aaf
-hCi
+wNO
aaa
aoV
aoV
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -84578,14 +84661,14 @@ aaa
aaa
aaa
aaf
-ddq
+fwk
aaf
-nnM
-mnG
-ilT
-fsC
+juO
+gAv
+ryS
+flE
abN
-pdR
+tvD
acF
acF
aes
@@ -84596,13 +84679,13 @@ ahB
aHp
agn
aiX
-jKI
-sHa
+ssm
+gEZ
amS
alA
-qyA
+dtr
amm
-alN
+wMN
anT
anT
aod
@@ -84616,10 +84699,10 @@ arf
arf
arf
arf
-fgi
-fgi
-fgi
-fgi
+qnI
+qnI
+qnI
+qnI
anF
ahn
aJn
@@ -84698,10 +84781,10 @@ cpD
cDw
cDF
cEa
-fFB
+mlU
csP
-gre
-rNn
+gOI
+vfX
cAq
cFK
aoV
@@ -84712,11 +84795,11 @@ cFK
aoV
aoV
cFK
-mWO
-gre
+cFJ
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaf
aaa
aaa
@@ -84835,12 +84918,12 @@ aaa
aaa
aaa
aaf
-ddq
+fwk
aaf
-nnM
-wMS
-kDA
-kkQ
+juO
+qIW
+dAx
+eVC
aci
acm
cpA
@@ -84857,10 +84940,10 @@ ajJ
akr
akX
aje
-gKd
-gKd
-gKd
-gKd
+vLG
+vLG
+vLG
+vLG
aoB
aod
aqe
@@ -84873,10 +84956,10 @@ atf
arf
aqa
atf
-fgi
-qqN
-mhD
-fgi
+qnI
+oYx
+qEl
+qnI
anF
ahn
aaa
@@ -84955,25 +85038,25 @@ cgR
cgR
cgR
cqT
-fFB
+mlU
csP
-gre
-gre
+gOI
+gOI
cAq
-mWO
+cFJ
cSK
-mWO
+cFJ
cSK
-mWO
+cFJ
cSK
-mWO
+cFJ
cSK
-mWO
-gre
-gre
+cFJ
+gOI
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -85094,9 +85177,9 @@ aaf
aaf
ctv
ctv
-uvy
+qRA
adR
-wrI
+gpe
avB
aaZ
aaZ
@@ -85115,12 +85198,12 @@ ahY
akX
ajc
alC
-gKd
-gKd
-oyS
-hbX
-mSu
-vPg
+vLG
+vLG
+myV
+kwd
+iJY
+cxB
arf
apY
ate
@@ -85130,10 +85213,10 @@ ath
arf
apY
ath
-fgi
-oZl
-srA
-fgi
+qnI
+fBY
+uLG
+qnI
anF
ahn
aaa
@@ -85212,25 +85295,25 @@ cnx
cDx
cqb
cqT
-fFB
+mlU
cEs
-gre
-rNn
+gOI
+vfX
cAr
-xJs
+lIT
cGh
-xJs
+lIT
cGh
-xJs
+lIT
cGh
-xJs
-vie
-gre
-gre
-gre
+lIT
+dcm
+gOI
+gOI
+gOI
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -85350,9 +85433,9 @@ aaa
aaa
aaa
atS
-olb
-gqJ
-tPb
+nTO
+kXn
+qpk
abO
abO
acO
@@ -85367,14 +85450,14 @@ ahA
ahZ
adR
aiQ
-ese
+oqW
akt
-sPi
-dLQ
+xIZ
+vSO
ajc
-qkd
+wCt
aiG
-hSW
+lju
aoD
aod
aqe
@@ -85387,10 +85470,10 @@ ath
arf
ayV
ath
-fgi
+qnI
aCd
-srA
-fgi
+uLG
+qnI
anF
ahn
aJw
@@ -85473,21 +85556,21 @@ ccw
ccw
ccw
crc
-gre
+gOI
cBR
-gre
-gre
-gre
-gre
-gre
-gre
-gre
+gOI
+gOI
+gOI
+gOI
+gOI
+gOI
+gOI
cBR
-gre
-riY
+gOI
+nGl
ccw
-uvy
-aaT
+qRA
+wOb
aaa
aaa
aaa
@@ -85606,9 +85689,9 @@ aaa
aaa
aaa
aaa
-lBd
-qli
-mXj
+jIZ
+glE
+nsg
abO
abO
abO
@@ -85627,11 +85710,11 @@ ajf
ajK
aks
akY
-srd
+rZr
ajc
-lik
+qiu
alC
-hSW
+lju
aoC
aod
aqe
@@ -85644,10 +85727,10 @@ awo
arf
asd
aAb
-fgi
-lza
-srA
-fgi
+qnI
+fmd
+uLG
+qnI
aoa
ahn
aJv
@@ -85724,27 +85807,27 @@ cDe
cDk
coc
cqa
-uuA
-uAt
-hMa
+xPO
+sjj
+jZr
czF
cEK
csd
-gre
+gOI
cFU
-gre
+gOI
cGE
-vHQ
+qCC
cGZ
-vHQ
+qCC
csx
-gre
+gOI
cFU
-gre
-gre
+gOI
+gOI
ccw
-uvy
-hCi
+qRA
+wNO
aaa
aaa
aaa
@@ -85863,14 +85946,14 @@ aaa
aaa
aaa
aaa
-qWq
-qli
-mXj
-yeT
-yeT
-yeT
-yeT
-yeT
+kPj
+glE
+nsg
+izN
+izN
+izN
+izN
+izN
abO
aew
afe
@@ -85882,13 +85965,13 @@ aia
aiP
aiR
ajB
-gtB
+oKG
aiX
akz
alf
-iNt
-iNt
-dfW
+qAP
+qAP
+leY
aoF
apo
aqh
@@ -85902,8 +85985,8 @@ aul
azc
atj
aAX
-aul
-aul
+azc
+atj
aFe
aul
aHT
@@ -85988,20 +86071,20 @@ crM
ccw
crV
cFn
-xMh
+lnG
cFn
-mLm
+vEu
ccw
ccw
ccw
cGr
cFn
-rZV
-mzz
-mzz
+ufy
+ych
+ych
ccw
-uvy
-yck
+qRA
+uJy
aaf
aaa
aaa
@@ -86120,9 +86203,9 @@ aaa
aaa
aaa
aaf
-tDP
-qli
-qli
+eBc
+glE
+glE
abO
abO
acp
@@ -86143,11 +86226,11 @@ aku
aiX
alE
amq
-ujc
-nwx
-gUO
+ipt
+tsp
+vYq
aoE
-dAS
+hOS
aqg
aun
asf
@@ -86256,9 +86339,9 @@ ccw
ccw
ccw
ccw
-jyX
-uvy
-hCi
+vhS
+qRA
+wNO
aaa
aaa
aaa
@@ -86377,14 +86460,14 @@ aaa
aaa
aaa
aaa
-qWq
-hgP
-xdq
-pND
+kPj
+qwA
+jJk
+hot
abR
-pND
-pND
-pND
+hot
+hot
+hot
abl
abp
abp
@@ -86504,18 +86587,18 @@ ccw
ccw
ccw
ccw
-hQd
-pmD
-pmD
-pmD
-uvy
-uvy
-uvy
-uvy
-uvy
+kQE
+crJ
+crJ
+crJ
+qRA
+qRA
+qRA
+qRA
+qRA
aaa
-yck
-hCi
+uJy
+wNO
aaa
aaa
aaa
@@ -86765,13 +86848,13 @@ aaa
aaa
aaa
aaa
-pmD
-uvy
-uvy
-uvy
-hCi
-hCi
-hCi
+crJ
+qRA
+qRA
+qRA
+wNO
+wNO
+wNO
aaa
aaa
aaa
@@ -86994,7 +87077,7 @@ caE
cbA
ccy
bOd
-yam
+gXF
bQu
cfO
cgW
@@ -87016,17 +87099,17 @@ ccw
crX
cfK
aag
-hCi
-hCi
-hCi
-hCi
-hCi
-hCi
+wNO
+wNO
+wNO
+wNO
+wNO
+wNO
gXs
gXs
gXs
gXs
-hCi
+wNO
aaa
aaa
aae
@@ -87239,7 +87322,7 @@ bIF
bOZ
bQp
bRA
-yam
+gXF
bTO
bUL
bVU
@@ -89211,7 +89294,7 @@ aaa
aaf
aag
acU
-afn
+adr
sXy
aeC
afn
@@ -89999,7 +90082,7 @@ aaa
aaa
aaf
ahn
-anF
+anG
aoe
aoL
apy
@@ -91823,10 +91906,10 @@ aKz
aKR
aND
aJC
-aPP
+aab
aRg
aQc
-aTa
+aac
aQc
aXk
aQc
@@ -92653,11 +92736,11 @@ cfl
cfZ
cki
cld
+eHI
cjt
-cjr
csq
-cmd
-cmd
+xEu
+wHz
cmd
cmd
cmd
@@ -92908,12 +92991,12 @@ cdF
ceD
cfk
cfY
-cjr
+rfW
ckj
cjs
cle
cli
-cmc
+uPT
cmY
cmc
cop
@@ -93682,10 +93765,10 @@ cfj
cfj
cfj
cjx
-cfj
-cfj
-cmd
-cmd
+cfl
+cfl
+dqu
+tXL
cmd
cos
cmd
@@ -96471,7 +96554,7 @@ cTS
cTK
bpQ
cTK
-cTJ
+slk
btm
buy
bvz
@@ -97016,8 +97099,8 @@ bRT
bEm
bEm
bDb
-aco
-agd
+cfr
+cho
bDb
aaa
cNW
@@ -97258,8 +97341,8 @@ bJJ
bKY
bMi
bNo
-aab
-aad
+bIP
+bPA
bJN
bRU
bEm
@@ -97273,9 +97356,9 @@ bRU
bEm
bEm
bDb
-acq
-age
-ajC
+cgi
+chq
+ccQ
aaa
cOT
cQB
@@ -97530,9 +97613,9 @@ bRU
bEm
cBz
bDb
-acq
-age
-ajC
+cgi
+chq
+ccQ
aaa
cOT
cQB
@@ -97772,8 +97855,8 @@ bJL
bLa
bMi
bNo
-aac
-aad
+bPy
+bPA
bJN
bRW
bTb
@@ -97787,8 +97870,8 @@ bZV
caV
cbS
bDb
-acw
-ago
+cgl
+chs
bDb
aaa
cNW
@@ -98044,8 +98127,8 @@ bRV
bTa
cbR
bDb
-adr
-agv
+cgk
+chr
bDb
aaa
cNW
@@ -98300,10 +98383,10 @@ bZa
bMi
bMi
bRZ
-abI
-aeF
-ahw
-ajC
+cTY
+cTZ
+chu
+ccQ
aaf
cOT
cQB
@@ -98557,12 +98640,12 @@ bTc
bRX
bTc
cbT
-abJ
-abJ
-ahR
-ajG
-ajX
-ajY
+ccP
+ccP
+cht
+ckn
+csk
+czQ
czU
czZ
cOT
@@ -98814,10 +98897,10 @@ bZb
bRZ
bMi
bMi
-abP
-afQ
-aiN
-ajC
+cfy
+cgn
+cjB
+ccQ
aaf
cOT
cgm
@@ -99060,15 +99143,15 @@ bIv
bIR
bPE
bLe
-abm
+bRY
bTd
bUg
bVi
-abn
+bWm
bTd
bUg
bVi
-abH
+bZW
bTd
bUg
bDb
@@ -100086,7 +100169,7 @@ bJN
bMp
bNp
bOx
-aaR
+bPI
bJN
bEm
bEm
@@ -102649,7 +102732,7 @@ bCi
bvK
bEw
bFU
-bFU
+bEL
bGk
bJW
bEC
@@ -102906,14 +102989,14 @@ aGs
bvK
bBF
bFU
-bEL
+bFT
bGz
bJZ
-bEC
+kzT
bMx
bNw
bOF
-bEC
+fcG
bQW
bSj
bTn
@@ -103166,11 +103249,11 @@ bFU
bFT
bFU
bJY
-bEC
+bEM
bMv
bNv
bMv
-bSl
+rcD
wkN
wkN
wkN
@@ -103420,14 +103503,14 @@ bzO
bqe
bEB
bFW
-bFT
-bFU
-bFU
+oce
+tOq
+kOw
bLi
bMz
bNy
bOH
-wkN
+dvO
bQY
vzp
bTo
@@ -103680,11 +103763,11 @@ bFV
bFT
bGA
bHg
-bFU
+bHg
bMy
bNx
bOG
-wkN
+jMF
uoB
bSk
bXs
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 294e5acc28..403334d4e0 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -113,29 +113,17 @@
/turf/open/space,
/area/solar/starboard/fore)
"aap" = (
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
-"aaq" = (
-/obj/machinery/light/small{
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/chem_dispenser/drinks/beer{
dir = 1
},
-/obj/machinery/camera{
- c_tag = "Xenobiology - Killroom Chamber";
- dir = 2;
- name = "xenobiology camera";
- network = list("ss13","xeno","rd")
+/obj/structure/table/wood/poker,
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -32
},
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
-"aar" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 2;
- external_pressure_bound = 140;
- name = "killroom vent";
- pressure_checks = 0
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
+/turf/open/floor/plating,
+/area/crew_quarters/abandoned_gambling_den)
"aas" = (
/obj/docking_port/stationary/random{
id = "pod_lavaland1";
@@ -155,35 +143,6 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/space,
/area/solar/starboard/fore)
-"aav" = (
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"aaw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 2;
- external_pressure_bound = 120;
- name = "server vent"
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
-"aax" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
-"aay" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
-"aaz" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/vault/killroom,
-/area/science/xenobiology)
"aaA" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
@@ -202,52 +161,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/fore)
-"aaF" = (
-/obj/structure/cable/white{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/plating,
-/area/science/xenobiology)
-"aaG" = (
-/obj/structure/cable/white{
- icon_state = "2-4"
- },
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/machinery/door/airlock/research/glass{
- name = "Xenobiology Kill Room";
- req_access_txt = "47"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"aaH" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 1;
- min_temperature = 80;
- on = 1;
- target_temperature = 80
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"aaI" = (
-/obj/machinery/computer/camera_advanced/xenobio{
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/open/floor/circuit/green,
-/area/science/xenobiology)
"aaO" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -1660,7 +1573,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Auxiliary Construction Zone";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1707,7 +1619,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Auxiliary Construction Zone";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/effect/turf_decal/stripes/line{
@@ -1907,7 +1818,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/effect/turf_decal/stripes/line{
@@ -3747,7 +3657,6 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/vending/kink,
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"amQ" = (
@@ -5682,7 +5591,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
name = "Reflector Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5708,7 +5616,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
name = "Reflector Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -9281,6 +9188,10 @@
},
/turf/open/floor/circuit/green,
/area/engine/supermatter)
+"ayK" = (
+/obj/machinery/power/supermatter_shard/crystal/engine,
+/turf/open/floor/engine,
+/area/engine/supermatter)
"ayL" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
@@ -9859,7 +9770,7 @@
},
/obj/machinery/door/airlock/highsecurity{
name = "Emergency Access";
- req_access_txt = "24;10"
+ req_one_access_txt = "24;10"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -10227,7 +10138,6 @@
/obj/machinery/door/airlock/atmos/glass{
heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -11492,7 +11402,6 @@
},
/obj/machinery/door/airlock/maintenance_hatch{
name = "Service Hallway Maintenance Hatch";
- req_access_txt = "0";
req_one_access_txt = "12;25;28;46"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12480,7 +12389,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
@@ -13724,8 +13632,6 @@
},
/obj/machinery/door/airlock/external{
name = "External Solar Access";
- req_access_txt = "0";
- req_one_access = null;
req_one_access_txt = "13; 24; 10"
},
/obj/effect/turf_decal/stripes/line{
@@ -13754,8 +13660,6 @@
},
/obj/machinery/door/airlock/external{
name = "External Solar Access";
- req_access_txt = "0";
- req_one_access = null;
req_one_access_txt = "13; 24; 10"
},
/obj/effect/turf_decal/stripes/line{
@@ -13811,8 +13715,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/atmos{
name = "Port Bow Solar Access";
- req_access_txt = "0";
- req_one_access = null;
req_one_access_txt = "13; 24"
},
/obj/structure/cable/white{
@@ -13956,7 +13858,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -13981,7 +13882,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Engine Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -14019,7 +13919,6 @@
},
/obj/machinery/door/airlock/atmos/glass{
name = "Power Monitoring";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
@@ -15091,7 +14990,9 @@
/turf/open/space,
/area/space/nearstation)
"aLc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"aLd" = (
@@ -15339,7 +15240,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/wood,
@@ -15630,11 +15530,6 @@
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/cryopod{
- tag = "icon-cryopod-open (WEST)";
- icon_state = "cryopod-open";
- dir = 8
- },
/turf/open/floor/plasteel/red/corner{
dir = 1
},
@@ -15734,7 +15629,7 @@
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"aMu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 4
},
/turf/open/floor/engine/vacuum,
@@ -15746,21 +15641,6 @@
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"aMw" = (
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- layer = 3.1;
- name = "Incinerator airlock control";
- pixel_x = -24;
- pixel_y = -8
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
- name = "Incinerator airlock control";
- pixel_x = 24;
- pixel_y = -8
- },
/obj/machinery/atmospherics/components/binary/pump{
dir = 4
},
@@ -15768,6 +15648,12 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airlock_sensor{
+ id_tag = "incinerator_airlock_sensor";
+ master_tag = "incinerator_airlock_control";
+ pixel_y = 24
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"aMx" = (
@@ -15846,7 +15732,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -15872,7 +15757,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Engine Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -16392,13 +16276,15 @@
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"aNT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 2;
+ frequency = 1449;
+ id = "incinerator_airlock_pump"
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"aNU" = (
@@ -17066,8 +16952,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "mix_in";
- pixel_y = 1
+ id = "mix_in"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine/vacuum,
@@ -17084,16 +16969,20 @@
dir = 8
},
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"aPA" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idInterior = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Incinerator Access Console";
+ airpump_tag = "incinerator_airlock_pump";
+ exterior_door_tag = "incinerator_airlock_exterior";
+ id_tag = "incinerator_access_control";
+ interior_door_tag = "incinerator_airlock_interior";
pixel_x = 8;
pixel_y = -24;
+ sanitize_external = 1;
+ sensor_tag = "incinerator_airlock_sensor";
req_access_txt = "12"
},
/obj/machinery/button/ignition{
@@ -19676,7 +19565,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/chair/stool,
@@ -19716,7 +19604,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/item/chair/stool,
@@ -19746,7 +19633,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/chair/stool,
@@ -20300,7 +20186,6 @@
},
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20854,7 +20739,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Atmospherics Storage";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
@@ -21160,7 +21044,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/structure/disposalpipe/segment{
@@ -21414,6 +21297,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
name = "Education Chamber";
req_access_txt = "3"
},
@@ -22469,8 +22353,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "co2_in";
- pixel_y = 1
+ id = "co2_in"
},
/turf/open/floor/engine/co2,
/area/engine/atmos)
@@ -23633,7 +23516,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Office";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -25167,8 +25049,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "tox_in";
- pixel_y = 1
+ id = "tox_in"
},
/turf/open/floor/engine/plasma,
/area/engine/atmos)
@@ -25230,7 +25111,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Atmospherics Storage";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
@@ -25346,8 +25226,7 @@
"bgn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Service Hall";
- req_access_txt = "0"
+ name = "Service Hall"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/white{
@@ -25591,7 +25470,6 @@
},
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/turf_decal/stripes/line{
@@ -25631,7 +25509,6 @@
},
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/turf_decal/stripes/line{
@@ -26342,7 +26219,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_y = 26;
- req_access_txt = "0";
use_power = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -28283,8 +28159,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "n2o_in";
- pixel_y = 1
+ id = "n2o_in"
},
/turf/open/floor/engine/n2o,
/area/engine/atmos)
@@ -29597,7 +29472,6 @@
},
/obj/machinery/door/airlock/command{
name = "Head of Security's Office";
- req_access = null;
req_access_txt = "58"
},
/obj/structure/disposalpipe/segment{
@@ -29692,7 +29566,6 @@
},
/obj/machinery/door/airlock/command{
name = "Head of Security's Quarters";
- req_access = null;
req_access_txt = "58"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -29830,8 +29703,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
- id = "mix_in";
- pixel_y = 1
+ id = "mix_in"
},
/turf/open/floor/engine/vacuum,
/area/engine/atmos)
@@ -33181,7 +33053,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -34585,7 +34456,6 @@
},
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Access";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
@@ -34982,8 +34852,7 @@
dir = 4
},
/obj/machinery/door/airlock/external{
- name = "Gulag Shuttle Airlock";
- req_access_txt = "0"
+ name = "Gulag Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -34998,8 +34867,7 @@
dir = 8
},
/obj/machinery/door/airlock/external{
- name = "Gulag Shuttle Airlock";
- req_access_txt = "0"
+ name = "Gulag Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -39421,7 +39289,6 @@
},
/obj/machinery/door/airlock/engineering{
name = "Engineering Foyer";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/obj/effect/turf_decal/stripes/line{
@@ -39458,7 +39325,6 @@
},
/obj/machinery/door/airlock/engineering{
name = "Engineering Foyer";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/obj/structure/cable/white{
@@ -39661,8 +39527,7 @@
"bIE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -39704,7 +39569,6 @@
},
/obj/machinery/door/airlock/command{
name = "Council Chambers";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -39840,7 +39704,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -40586,8 +40449,7 @@
"bKw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -40687,7 +40549,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Telecomms Control Room";
- req_access = null;
req_access_txt = "19; 61"
},
/turf/open/floor/plasteel/vault{
@@ -40899,7 +40760,6 @@
"bLg" = (
/obj/machinery/door/airlock/security{
name = "Private Interrogation";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44388,8 +44248,7 @@
"bSt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -44403,8 +44262,7 @@
"bSu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -44684,7 +44542,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/structure/cable/white{
@@ -45695,7 +45552,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Office";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/disposalpipe/segment,
@@ -45738,7 +45594,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plasteel/vault{
@@ -48171,7 +48026,6 @@
},
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plasteel/vault/telecomms{
@@ -48198,7 +48052,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -50014,6 +49867,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
+/obj/item/storage/secure/safe{
+ pixel_x = 32
+ },
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain/private)
"ccT" = (
@@ -50130,8 +49986,7 @@
/obj/machinery/button/door{
id = "lawyerprivacy";
name = "Lawyer's Privacy Control";
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/turf/open/floor/wood,
/area/lawoffice)
@@ -51708,6 +51563,9 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
+/obj/item/storage/secure/safe{
+ pixel_x = 32
+ },
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"cgi" = (
@@ -52694,7 +52552,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -53376,7 +53233,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plasteel/vault/telecomms{
@@ -54652,7 +54508,6 @@
},
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plasteel/vault{
@@ -55382,7 +55237,6 @@
"cnY" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Quarters";
- req_access = null;
req_access_txt = "57"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -56070,8 +55924,7 @@
},
/obj/machinery/door/window{
dir = 8;
- name = "Library Desk";
- req_access_txt = "0"
+ name = "Library Desk"
},
/turf/open/floor/plasteel/grimy,
/area/library)
@@ -56725,7 +56578,6 @@
},
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Office";
- req_access = null;
req_access_txt = "57"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -56753,7 +56605,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Telecomms Foyer";
- req_access = null;
req_access_txt = "61"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -57303,8 +57154,7 @@
},
/obj/machinery/door/window{
dir = 8;
- name = "Library Desk";
- req_access_txt = "0"
+ name = "Library Desk"
},
/turf/open/floor/plasteel/grimy,
/area/library)
@@ -58740,7 +58590,6 @@
dir = 8
},
/obj/effect/turf_decal/bot,
-/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cva" = (
@@ -58870,7 +58719,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -58886,7 +58734,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -61029,7 +60876,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -61040,7 +60886,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -61350,6 +61195,9 @@
/area/space/nearstation)
"cAK" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -61687,7 +61535,6 @@
/obj/item/reagent_containers/syringe/charcoal,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- req_access_txt = "0";
use_power = 0
},
/obj/machinery/camera{
@@ -62732,8 +62579,7 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -64394,7 +64240,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/dirt{
@@ -64432,7 +64277,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -64452,7 +64296,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -64845,7 +64688,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
- req_access = null;
req_access_txt = "19"
},
/obj/structure/cable/white{
@@ -65104,8 +64946,7 @@
},
/obj/machinery/door/window{
dir = 4;
- name = "Fitness Ring";
- req_access_txt = "0"
+ name = "Fitness Ring"
},
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness/recreation)
@@ -67631,6 +67472,21 @@
dir = 5
},
/area/science/xenobiology)
+"cNh" = (
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
+"cNi" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Killroom Chamber";
+ dir = 2;
+ name = "xenobiology camera";
+ network = list("ss13","xeno","rd")
+ },
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
"cNj" = (
/obj/structure/closet/crate{
icon_state = "crateopen"
@@ -67943,8 +67799,7 @@
/obj/structure/window/reinforced,
/obj/machinery/door/window{
dir = 8;
- name = "Fitness Ring";
- req_access_txt = "0"
+ name = "Fitness Ring"
},
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness/recreation)
@@ -68345,6 +68200,26 @@
"cON" = (
/turf/open/floor/circuit/green,
/area/science/xenobiology)
+"cOO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 2;
+ external_pressure_bound = 140;
+ name = "killroom vent";
+ pressure_checks = 0
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"cOP" = (
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"cOQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 2;
+ external_pressure_bound = 120;
+ name = "server vent"
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"cOR" = (
/turf/closed/wall/r_wall,
/area/science/research)
@@ -68803,7 +68678,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -68830,7 +68704,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -68860,7 +68733,6 @@
normaldoorcontrol = 1;
pixel_x = -26;
pixel_y = 7;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -69100,6 +68972,24 @@
dir = 1
},
/area/science/xenobiology)
+"cQw" = (
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
+"cQx" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
+"cQy" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/vault/killroom,
+/area/science/xenobiology)
"cQz" = (
/obj/structure/closet/wardrobe/science_white,
/obj/machinery/light/small{
@@ -69798,6 +69688,33 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"cSf" = (
+/obj/structure/cable/white{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"cSg" = (
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Xenobiology Kill Room";
+ req_access_txt = "47"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"cSh" = (
/obj/structure/cable/white{
icon_state = "0-8"
@@ -70576,6 +70493,16 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/science/xenobiology)
+"cTR" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1;
+ min_temperature = 80;
+ on = 1;
+ target_temperature = 80
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"cTS" = (
/obj/structure/cable/white{
icon_state = "1-2"
@@ -71022,8 +70949,7 @@
/obj/machinery/door/window/eastleft{
name = "First-Aid Supplies";
red_alert_access = 1;
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/open/floor/plasteel/neutral/side{
dir = 4
@@ -72268,6 +72194,15 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/science/xenobiology)
+"cXm" = (
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/circuit/green,
+/area/science/xenobiology)
"cXn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
@@ -77095,7 +77030,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- req_access_txt = "0";
use_power = 0
},
/turf/open/floor/plasteel/whiteblue/corner,
@@ -77356,7 +77290,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research and Development Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/obj/machinery/door/poddoor/shutters/preopen{
@@ -77432,8 +77365,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/door/window/southleft{
dir = 8;
- name = "Chemistry Desk";
- req_access_txt = "0"
+ name = "Chemistry Desk"
},
/turf/open/floor/plasteel,
/area/medical/chemistry)
@@ -79005,7 +78937,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research and Development Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/obj/structure/cable/white{
@@ -79123,8 +79054,7 @@
"dmc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -79142,8 +79072,7 @@
"dme" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -80800,8 +80729,7 @@
"dpC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -81281,7 +81209,6 @@
},
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
- req_access = null;
req_access_txt = "30"
},
/obj/effect/turf_decal/stripes/line{
@@ -81369,7 +81296,6 @@
},
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
- req_access = null;
req_access_txt = "30"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -81638,8 +81564,7 @@
"drn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -84752,7 +84677,6 @@
},
/obj/machinery/door/airlock/command{
name = "Research Director's Quarters";
- req_access = null;
req_access_txt = "30"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -85185,7 +85109,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- req_access_txt = "0";
use_power = 0
},
/turf/open/floor/plasteel/vault,
@@ -86773,16 +86696,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/aft)
-"dBP" = (
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/structure/table/wood/poker,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/crew_quarters/abandoned_gambling_den)
"dBQ" = (
/obj/structure/table/wood/poker,
/obj/item/reagent_containers/food/drinks/bottle/rum{
@@ -87231,7 +87144,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = 26;
- req_access_txt = "0";
use_power = 0
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -88367,8 +88279,7 @@
"dFp" = (
/obj/machinery/door/window{
dir = 8;
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
@@ -88705,7 +88616,6 @@
},
/obj/machinery/door/airlock/command{
name = "Research Division Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable/white{
@@ -98150,7 +98060,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/command{
name = "Auxiliary E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/structure/cable/white{
@@ -98169,7 +98078,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/command{
name = "Auxiliary E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/structure/barricade/wooden,
@@ -98944,8 +98852,7 @@
/area/chapel/office)
"ecS" = (
/obj/machinery/door/morgue{
- name = "Confession Booth";
- req_access_txt = "0"
+ name = "Confession Booth"
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -100769,10 +100676,22 @@
dir = 4
},
/area/science/misc_lab)
+"fte" = (
+/turf/open/floor/plating/airless,
+/area/space)
+"fDq" = (
+/turf/open/space,
+/area/space/nearstation)
"fGq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/science/circuit)
+"fLR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"fRT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -100787,9 +100706,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/science/circuit)
-"gsR" = (
-/turf/open/space,
-/area/space)
"gKr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
@@ -100849,25 +100765,14 @@
},
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
-"htt" = (
+"hFo" = (
+/obj/structure/lattice,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/extinguisher,
-/obj/item/extinguisher{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/extinguisher{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/space,
+/area/space/nearstation)
"hGT" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/white{
@@ -100899,9 +100804,9 @@
dir = 9
},
/area/science/circuit)
-"hRG" = (
-/turf/open/space/basic,
-/area/space/nearstation)
+"iPZ" = (
+/turf/open/space,
+/area/space)
"iQh" = (
/obj/structure/bodycontainer/morgue{
dir = 1
@@ -100910,6 +100815,13 @@
dir = 8
},
/area/medical/morgue)
+"iXR" = (
+/obj/structure/particle_accelerator/end_cap{
+ icon_state = "end_cap";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"jeu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -100949,7 +100861,7 @@
},
/obj/machinery/door/airlock/highsecurity{
name = "Emergency Access";
- req_access_txt = "24;10"
+ req_one_access_txt = "24;10"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -100960,9 +100872,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/neutral,
/area/medical/morgue)
-"jKb" = (
-/turf/open/space,
-/area/space/nearstation)
"kwx" = (
/obj/effect/turf_decal/loading_area,
/turf/open/floor/plasteel/whitepurple/corner,
@@ -100982,15 +100891,6 @@
dir = 10
},
/area/science/circuit)
-"lel" = (
-/obj/machinery/vending/kink,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/locker)
-"lkn" = (
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
"loI" = (
/obj/machinery/autolathe,
/obj/machinery/door/window/southleft{
@@ -101006,10 +100906,13 @@
dir = 4
},
/area/science/lab)
-"lxv" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
+"lyW" = (
+/obj/structure/particle_accelerator/particle_emitter/center{
+ icon_state = "emitter_center";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"lEl" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -101054,13 +100957,6 @@
dir = 1
},
/area/science/circuit)
-"mqk" = (
-/obj/structure/particle_accelerator/end_cap{
- icon_state = "end_cap";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"mvm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -101072,15 +100968,17 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit/green,
/area/science/research/abandoned)
-"nJG" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
+"mVf" = (
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"nSh" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"oZC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -101089,13 +100987,6 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
-"pfd" = (
-/obj/structure/particle_accelerator/particle_emitter/center{
- icon_state = "emitter_center";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"pmQ" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -101122,6 +101013,9 @@
},
/turf/open/floor/plating,
/area/science/research/abandoned)
+"pFw" = (
+/turf/open/space/basic,
+/area/space/nearstation)
"pQm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white{
@@ -101129,6 +101023,10 @@
},
/turf/open/floor/plasteel/neutral,
/area/science/research/abandoned)
+"pTr" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
"qhc" = (
/obj/structure/table/reinforced,
/obj/item/device/integrated_electronics/analyzer,
@@ -101143,6 +101041,12 @@
dir = 5
},
/area/science/circuit)
+"qKr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"rhO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
@@ -101159,12 +101063,6 @@
"saw" = (
/turf/closed/wall,
/area/science/circuit)
-"tdp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
"tmi" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -101174,6 +101072,10 @@
"tCh" = (
/turf/closed/wall,
/area/science/misc_lab)
+"tIV" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
"tMk" = (
/turf/open/floor/plasteel/white/side{
dir = 10
@@ -101203,14 +101105,17 @@
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/whitepurple/side,
/area/science/misc_lab)
-"uDN" = (
-/turf/open/floor/plating/airless,
-/area/space)
+"utU" = (
+/obj/structure/particle_accelerator/power_box{
+ icon_state = "power_box";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"uYS" = (
/obj/machinery/door/airlock/atmos/glass{
heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "0";
req_one_access_txt = "24;10"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -101218,6 +101123,12 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"vjq" = (
+/obj/machinery/vending/kink,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/locker)
"vqd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bodycontainer/morgue{
@@ -101263,13 +101174,6 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"xwB" = (
-/obj/structure/particle_accelerator/power_box{
- icon_state = "power_box";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"xwK" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -121762,13 +121666,13 @@ aaa
cja
ckw
clS
-jKb
-jKb
+fDq
+fDq
clS
-nJG
-hRG
-jKb
-jKb
+tIV
+pFw
+fDq
+fDq
clS
ctn
cja
@@ -122018,15 +121922,15 @@ cfA
aad
cjb
cky
-jKb
-gsR
-gsR
-lxv
+fDq
+iPZ
+iPZ
+pTr
aad
-hRG
-gsR
-gsR
-jKb
+pFw
+iPZ
+iPZ
+fDq
czq
cAI
aad
@@ -122229,12 +122133,12 @@ aFq
aGO
aIo
aJG
-aFr
+fLR
aMw
aNT
aPz
-aFr
-aSR
+nSh
+hFo
aRF
aWt
aXV
@@ -122275,15 +122179,15 @@ cfA
aaa
cja
ckw
-jKb
-gsR
-hRG
-hRG
+fDq
+iPZ
+pFw
+pFw
aad
-hRG
-hRG
-gsR
-jKb
+pFw
+pFw
+iPZ
+fDq
ctn
cja
aaa
@@ -122532,14 +122436,14 @@ cfA
abj
cjb
cky
-hRG
-hRG
-hRG
+pFw
+pFw
+pFw
cqo
clR
ctm
-hRG
-lxv
+pFw
+pTr
clS
czq
cAI
@@ -122789,15 +122693,15 @@ cdC
aad
cja
ckw
-nJG
+tIV
aad
aad
ckw
crJ
-tdp
+qKr
aad
aad
-nJG
+tIV
ctn
cja
aad
@@ -123047,14 +122951,14 @@ abj
cjb
cky
clS
-lxv
-hRG
+pTr
+pFw
cqp
crK
cto
-hRG
-hRG
-hRG
+pFw
+pFw
+pFw
czq
cAI
abj
@@ -123303,15 +123207,15 @@ cfA
aaa
cja
ckw
-jKb
-gsR
-hRG
-hRG
+fDq
+iPZ
+pFw
+pFw
aad
-hRG
-hRG
-gsR
-jKb
+pFw
+pFw
+iPZ
+fDq
ctn
cja
aaa
@@ -123560,15 +123464,15 @@ cfA
aad
cjb
cky
-jKb
-gsR
+fDq
+iPZ
aaa
-hRG
+pFw
aad
-lxv
+pTr
aaa
-gsR
-jKb
+iPZ
+fDq
czq
cAI
aad
@@ -123818,13 +123722,13 @@ aaa
cja
ckw
clS
-jKb
-hRG
-hRG
-nJG
+fDq
+pFw
+pFw
+tIV
clS
-jKb
-jKb
+fDq
+fDq
clS
ctn
cja
@@ -123861,7 +123765,7 @@ dod
dxE
dyY
dAo
-dBP
+aap
dfY
aad
abj
@@ -124328,8 +124232,8 @@ car
cbT
cdG
cfB
-uDN
-lkn
+fte
+mVf
aaa
aad
cjd
@@ -124341,8 +124245,8 @@ cjd
cjd
aad
aaa
-lkn
-uDN
+mVf
+fte
cDV
cFL
cHg
@@ -124849,7 +124753,7 @@ cje
cjd
cpa
cqr
-pfd
+lyW
ctp
cuQ
cjd
@@ -125106,7 +125010,7 @@ chv
cnC
cpa
cqs
-xwB
+utU
ctq
cuR
cnC
@@ -125620,7 +125524,7 @@ clX
cnE
cpc
cqu
-mqk
+iXR
cts
cuT
cnE
@@ -127102,7 +127006,7 @@ atS
avb
awh
axz
-axz
+ayK
axz
aAW
axz
@@ -128473,7 +128377,7 @@ das
dcd
cMY
deX
-htt
+dgo
dhR
lKu
tmi
@@ -132573,9 +132477,9 @@ cHA
cjp
cKl
cLI
-aap
-aap
-aap
+cNh
+cNh
+cNh
cNc
cTQ
cVI
@@ -132830,11 +132734,11 @@ cHB
cjp
cKj
cLI
-aap
-aar
-aax
-aaF
-aaH
+cNh
+cOO
+cQw
+cSf
+cTR
cVP
cXi
cYX
@@ -133087,10 +132991,10 @@ cHD
caE
cKm
cLI
-aaq
-aav
-aay
-aaG
+cNi
+cOP
+cQx
+cSg
cTS
cVQ
cXj
@@ -133344,9 +133248,9 @@ cHB
cjp
cKk
cLI
-aap
-aaw
-aaz
+cNh
+cOQ
+cQy
cSh
cTT
cVR
@@ -133601,9 +133505,9 @@ cHA
ceb
cKk
cLI
-aap
-aap
-aap
+cNh
+cNh
+cNh
cNc
cTU
cVS
@@ -133864,9 +133768,9 @@ cMY
cMY
cTV
cVT
-aaI
+cXm
cZb
-aaI
+cXm
dcu
ddV
cMY
@@ -149777,7 +149681,7 @@ clt
cnc
coE
cqd
-lel
+vjq
csT
cuy
cvU
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index 972ad7dd6c..81a5201a93 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -2,48 +2,10 @@
"aaa" = (
/turf/open/space/basic,
/area/space)
-"aab" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/computer/camera_advanced/xenobio,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"aac" = (
/obj/effect/landmark/carpspawn,
/turf/open/space,
/area/space)
-"aad" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/computer/camera_advanced/xenobio,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
-"aae" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"aaf" = (
/obj/structure/lattice,
/turf/open/space,
@@ -336,46 +298,9 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aaU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/science/xenobiology)
"aaV" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_2)
-"aaW" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/extinguisher{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/item/extinguisher,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"aaX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science/xenobiology)
"aaY" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -410,15 +335,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/security/prison)
-"abd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science/xenobiology)
"abe" = (
/turf/closed/wall,
/area/security/prison)
@@ -432,10 +348,8 @@
"abg" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "SecJusticeChamber";
- name = "Justice Vent";
- opacity = 1
+ name = "Justice Vent"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -506,6 +420,11 @@
/obj/machinery/newscaster{
pixel_y = 32
},
+/obj/machinery/vending/sustenance{
+ desc = "A vending machine normally reserved for work camps.";
+ name = "\improper sustenance vendor";
+ product_slogans = "Enjoy your meal.;Enough calories to support any worker."
+ },
/turf/open/floor/plasteel,
/area/security/prison)
"abo" = (
@@ -618,8 +537,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/machinery/light/small,
/turf/open/floor/plasteel/freezer,
@@ -804,8 +722,7 @@
/area/security/execution/education)
"abY" = (
/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
+ name = "Unisex Restroom"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
@@ -838,29 +755,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/prison)
-"acd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- glass = 1;
- name = "Slime Euthanization Chamber";
- opacity = 0;
- req_access_txt = "55"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"ace" = (
-/obj/machinery/vending/sustenance{
- desc = "A vending machine normally reserved for work camps.";
- name = "\improper sustenance vendor";
- product_slogans = "Enjoy your meal.;Enough calories to support any worker."
+/obj/machinery/computer/cryopod{
+ pixel_x = 28;
+ pixel_y = 0
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
@@ -1541,7 +1439,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/floorgrime,
@@ -1571,7 +1468,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plating{
@@ -1596,7 +1492,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/floorgrime,
@@ -1723,7 +1618,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -1891,7 +1785,6 @@
"aef" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/structure/cable{
@@ -1919,8 +1812,7 @@
base_state = "left";
dir = 1;
icon_state = "left";
- name = "gas ports";
- req_access_txt = "0"
+ name = "gas ports"
},
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
@@ -1933,8 +1825,7 @@
base_state = "right";
dir = 1;
icon_state = "right";
- name = "gas ports";
- req_access_txt = "0"
+ name = "gas ports"
},
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
@@ -1944,7 +1835,6 @@
aiControlDisabled = 1;
id_tag = "prisonereducation";
name = "Prisoner Education Chamber";
- req_access = null;
req_access_txt = "3"
},
/obj/structure/cable/yellow{
@@ -2109,17 +1999,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/fitness/recreation)
-"aeD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair,
-/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"aeE" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2717,7 +2596,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -2846,15 +2724,6 @@
dir = 1
},
/area/security/prison)
-"afQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"afR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
@@ -3115,7 +2984,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/mirror{
@@ -3524,9 +3392,7 @@
},
/area/crew_quarters/fitness/recreation)
"aho" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/crew_quarters/fitness/recreation)
"ahp" = (
@@ -3796,7 +3662,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Armory";
- req_access = null;
req_access_txt = "3"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -3822,12 +3687,6 @@
icon_state = "platingdmg1"
},
/area/maintenance/fore)
-"ahT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"ahU" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/table,
@@ -4189,7 +4048,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
name = "Head of Security's Office";
- req_access = null;
req_access_txt = "58"
},
/obj/structure/cable/yellow{
@@ -4241,8 +4099,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "Shooting Range";
- req_access_txt = "0"
+ name = "Shooting Range"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
@@ -4424,18 +4281,6 @@
/obj/item/restraints/handcuffs/cable/pink,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"ajk" = (
-/obj/machinery/door/airlock/research{
- glass = 1;
- name = "Slime Euthanization Chamber";
- opacity = 0;
- req_access_txt = "55"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"ajl" = (
/obj/item/soap/deluxe,
/obj/item/storage/secure/safe{
@@ -4524,15 +4369,6 @@
dir = 4
},
/area/security/warden)
-"aju" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 1;
- name = "euthanization chamber freezer";
- on = 1;
- target_temperature = 80
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
"ajv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -5465,9 +5301,8 @@
/area/maintenance/starboard)
"alr" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
-/area/science/xenobiology)
+/area/maintenance/starboard)
"als" = (
/obj/machinery/light{
dir = 8
@@ -5496,7 +5331,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -5682,8 +5516,7 @@
base_state = "left";
dir = 4;
icon_state = "left";
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -5705,8 +5538,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
- req_access = null;
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5755,9 +5586,7 @@
},
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
- req_access = null;
- req_access_txt = "3";
- req_one_access_txt = "0"
+ req_access_txt = "3"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -5794,7 +5623,6 @@
},
/obj/machinery/door/airlock/security/glass{
name = "Gear Room";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/structure/cable/yellow{
@@ -5989,7 +5817,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Firing Range";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/structure/cable/yellow{
@@ -6153,7 +5980,6 @@
/area/maintenance/starboard/fore)
"amH" = (
/obj/machinery/door/airlock/external{
- req_access_txt = "0";
req_one_access_txt = "13,8"
},
/turf/open/floor/plating,
@@ -6274,17 +6100,6 @@
icon_state = "platingdmg2"
},
/area/maintenance/port)
-"amV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- glass = 1;
- name = "Slime Euthanization Chamber";
- opacity = 0;
- req_access_txt = "55"
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
"amW" = (
/obj/structure/table/reinforced,
/obj/item/folder,
@@ -6293,8 +6108,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "windoor";
- req_access_txt = "0"
+ name = "windoor"
},
/obj/item/book/manual/wiki/engineering_hacking,
/obj/item/device/tape/random,
@@ -6366,8 +6180,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/turf/open/floor/plasteel/whitered/side{
dir = 4
@@ -6530,9 +6343,6 @@
/obj/item/paper,
/turf/open/floor/plasteel,
/area/security/main)
-"anz" = (
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"anA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -6561,7 +6371,6 @@
"anD" = (
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/structure/cable/yellow{
@@ -6845,8 +6654,7 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Brig Infirmary Maintenance";
- req_access_txt = "63";
- req_one_access_txt = "0"
+ req_access_txt = "63"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
@@ -6962,22 +6770,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
- req_access = null;
- req_access_txt = "3";
- req_one_access_txt = "0"
+ req_access_txt = "3"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/warden)
-"aov" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1;
- external_pressure_bound = 140;
- name = "server vent";
- pressure_checks = 0
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"aow" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -7192,7 +6989,6 @@
/area/maintenance/fore)
"aoS" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "1;4;38;12"
},
/obj/structure/cable/yellow{
@@ -7662,10 +7458,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"apP" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"apQ" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 32
@@ -7718,14 +7510,6 @@
/obj/item/device/assembly/flash/handheld,
/turf/open/floor/plasteel,
/area/security/main)
-"apX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 1;
- external_pressure_bound = 120;
- name = "server vent"
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"apY" = (
/obj/structure/table,
/obj/item/folder/red,
@@ -7769,11 +7553,6 @@
/obj/item/clothing/head/soft/red,
/turf/open/floor/plasteel/vault,
/area/crew_quarters/fitness/recreation)
-"aqe" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small,
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"aqf" = (
/obj/structure/closet/lasertag/blue,
/turf/open/floor/plasteel/vault,
@@ -8232,15 +8011,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"arh" = (
-/obj/machinery/camera{
- c_tag = "Xenobiology Lab - Kill Chamber";
- dir = 1;
- network = list("ss13","rd","xeno");
- start_active = 1
- },
-/turf/open/floor/circuit/killroom,
-/area/science/xenobiology)
"ari" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -8353,8 +8123,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Interrogation Monitoring";
- req_access = null;
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/turf/open/floor/plasteel/grimy,
@@ -8406,8 +8174,7 @@
"arC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Recreation Area";
- req_access_txt = "0"
+ name = "Recreation Area"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -8425,18 +8192,13 @@
"arE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Recreation Area";
- req_access_txt = "0"
+ name = "Recreation Area"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
/area/crew_quarters/dorms)
-"arF" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/science/xenobiology)
"arG" = (
/obj/structure/closet,
/obj/item/storage/box/lights/mixed,
@@ -8622,8 +8384,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -8664,8 +8425,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -8703,9 +8463,7 @@
/area/maintenance/port/fore)
"asf" = (
/obj/machinery/door/airlock/maintenance_hatch{
- name = "Cargo Bay Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Cargo Bay Bridge Access"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8774,7 +8532,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance{
name = "Brig Maintenance";
- req_access_txt = "0";
req_one_access_txt = "63;12"
},
/obj/structure/disposalpipe/segment,
@@ -8887,9 +8644,7 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
icon_state = "1-4"
},
@@ -8906,18 +8661,15 @@
/obj/machinery/button/door{
id = "Secure Gate";
name = "Cell Window Control";
- normaldoorcontrol = 0;
pixel_x = -5;
pixel_y = -3;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/button/door{
id = "briglockdown";
name = "Brig Lockdown Control";
pixel_x = 5;
- pixel_y = -3;
- req_access_txt = "0"
+ pixel_y = -3
},
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -9194,7 +8946,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -9249,7 +9000,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -9353,9 +9103,7 @@
"ato" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance_hatch{
- name = "Cargo Bay Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Cargo Bay Bridge Access"
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -9498,18 +9246,10 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"atC" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/turf/open/floor/plating/airless,
-/area/science/xenobiology)
"atD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -9635,9 +9375,7 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/warden)
@@ -9645,7 +9383,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Gear Room";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/effect/turf_decal/delivery,
@@ -9662,7 +9399,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/turf/open/floor/plasteel,
@@ -9671,7 +9407,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -10117,8 +9852,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/machinery/door/window/brigdoor{
dir = 1;
@@ -10582,7 +10316,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;50"
},
/turf/open/floor/plating,
@@ -10672,9 +10405,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
"awd" = (
@@ -10853,9 +10584,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Interrogation";
- req_access = null;
- req_access_txt = "63";
- req_one_access_txt = "0"
+ req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10934,7 +10663,6 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -10962,7 +10690,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -11107,9 +10834,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
@@ -11163,9 +10888,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/brig)
"axh" = (
@@ -11461,9 +11184,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/machinery/light/small{
- dir = 1
- },
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"axN" = (
@@ -11624,6 +11344,13 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"aye" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
"ayf" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/glass{
@@ -11655,7 +11382,6 @@
"aym" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/structure/cable/yellow{
@@ -11749,9 +11475,7 @@
/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/security/brig)
"ayz" = (
@@ -11863,7 +11587,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12030,18 +11753,13 @@
},
/area/security/brig)
"azd" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
},
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
"aze" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-22"
@@ -12154,9 +11872,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- req_access_txt = "0"
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
icon_state = "1-4"
},
@@ -12480,9 +12196,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
- },
/turf/open/floor/plating{
icon_state = "platingdmg2"
},
@@ -12761,9 +12474,7 @@
/area/space)
"aAB" = (
/obj/machinery/door/airlock/external{
- name = "Mining Dock Airlock";
- req_access = null;
- req_access_txt = "0"
+ name = "Mining Dock Airlock"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -13368,6 +13079,9 @@
},
/obj/machinery/rnd/production/circuit_imprinter,
/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aBM" = (
@@ -13377,6 +13091,9 @@
},
/obj/machinery/rnd/production/protolathe/department/engineering,
/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aBN" = (
@@ -13385,9 +13102,15 @@
dir = 1
},
/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aBO" = (
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aBS" = (
@@ -13541,8 +13264,7 @@
"aCj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "0"
+ name = "Labor Camp Shuttle Airlock"
},
/turf/open/floor/plasteel/dark,
/area/hallway/primary/fore)
@@ -13652,7 +13374,6 @@
"aCr" = (
/obj/machinery/door/airlock/security{
name = "Court Cell";
- req_access = null;
req_access_txt = "63"
},
/turf/open/floor/plasteel/dark,
@@ -13744,8 +13465,7 @@
/area/crew_quarters/toilet/restrooms)
"aCB" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
@@ -13816,7 +13536,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/cobweb,
@@ -13918,13 +13637,17 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
+"aCX" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"aCY" = (
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -26
},
-/obj/machinery/power/grounding_rod,
-/turf/open/floor/plating/airless,
-/area/space)
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"aCZ" = (
/obj/structure/cable,
/obj/effect/turf_decal/stripes/line{
@@ -14154,18 +13877,15 @@
/obj/machinery/button/door{
id = "Secure Gate";
name = "Cell Window Control";
- normaldoorcontrol = 0;
pixel_x = 5;
pixel_y = 27;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/button/door{
id = "briglockdown";
name = "Brig Lockdown Control";
pixel_x = 5;
- pixel_y = 37;
- req_access_txt = "0"
+ pixel_y = 37
},
/obj/machinery/light/small{
dir = 1
@@ -14317,7 +14037,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/landmark/start/assistant,
@@ -14827,8 +14546,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
dir = 4;
@@ -14891,9 +14609,7 @@
/area/security/detectives_office)
"aFa" = (
/obj/machinery/door/window{
- dir = 1;
- name = "glass door";
- req_access_txt = "0"
+ dir = 1
},
/turf/open/floor/plasteel/dark,
/area/security/detectives_office)
@@ -14967,8 +14683,7 @@
"aFi" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -15229,7 +14944,6 @@
/area/quartermaster/warehouse)
"aFM" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/obj/structure/disposalpipe/segment,
@@ -15358,7 +15072,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Security-Storage Backroom";
- req_access = null;
req_access_txt = "63"
},
/turf/open/floor/plasteel/dark,
@@ -15657,7 +15370,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/freezer,
@@ -15997,7 +15709,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -16038,7 +15749,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16178,7 +15888,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Court Cell";
- req_access = null;
req_access_txt = "63"
},
/turf/open/floor/plasteel/dark,
@@ -16285,7 +15994,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/bed,
@@ -16317,9 +16025,6 @@
lootcount = 2;
name = "2maintenance loot spawner"
},
-/obj/machinery/light/small{
- dir = 8
- },
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aHW" = (
@@ -16360,7 +16065,6 @@
id = "aux_base_shutters";
name = "Public Shutters Control";
pixel_y = -24;
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/turf/open/floor/plasteel/yellow/side,
@@ -16524,7 +16228,6 @@
},
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -16684,7 +16387,6 @@
},
/obj/machinery/door/airlock/security{
name = "Security-Storage Backroom";
- req_access = null;
req_access_txt = "63"
},
/turf/open/floor/plasteel/dark,
@@ -16931,7 +16633,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/freezer,
@@ -16958,7 +16659,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/landmark/start/assistant,
@@ -17139,7 +16839,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -17152,7 +16851,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
@@ -17222,7 +16920,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Brig";
- req_access = null;
req_access_txt = "63; 42"
},
/turf/open/floor/plasteel,
@@ -17342,7 +17039,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "1;4;38;12"
},
/turf/open/floor/plating,
@@ -17350,8 +17046,7 @@
"aKl" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
@@ -17362,8 +17057,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
+ name = "Dormitories"
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
@@ -17378,8 +17072,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
+ name = "Dormitories"
},
/turf/open/floor/plasteel/neutral/corner{
dir = 4
@@ -17517,10 +17210,8 @@
"aKN" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "QMLoaddoor2";
- name = "Supply Dock Loading Door";
- opacity = 1
+ name = "Supply Dock Loading Door"
},
/obj/machinery/conveyor{
dir = 4;
@@ -19162,8 +18853,7 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
+ name = "Garden"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -19845,9 +19535,7 @@
icon_state = "2-8"
},
/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aPZ" = (
/obj/machinery/vending/tool,
@@ -19889,10 +19577,8 @@
"aQg" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "QMLoaddoor";
- name = "Supply Dock Loading Door";
- opacity = 1
+ name = "Supply Dock Loading Door"
},
/obj/machinery/conveyor{
dir = 8;
@@ -20241,8 +19927,7 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock{
- name = "Locker Room";
- req_access_txt = "0"
+ name = "Locker Room"
},
/turf/open/floor/plasteel/floorgrime,
/area/crew_quarters/locker)
@@ -20475,9 +20160,10 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aRp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20665,8 +20351,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Crate Disposal Chute";
- req_access_txt = "0"
+ name = "Crate Disposal Chute"
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -20931,9 +20616,10 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plasteel/yellow/side{
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aSu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -21278,7 +20964,6 @@
"aTi" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
- locked = 0;
name = "AI Upload";
req_access_txt = "16"
},
@@ -21381,8 +21066,7 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Locker Room";
- req_access_txt = "0"
+ name = "Locker Room"
},
/turf/open/floor/plasteel/floorgrime,
/area/crew_quarters/locker)
@@ -21490,9 +21174,10 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aTG" = (
/obj/structure/disposalpipe/segment{
@@ -21557,8 +21242,7 @@
},
/obj/machinery/door/window{
dir = 2;
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/turf/open/floor/plasteel/dark,
/area/aisat)
@@ -21641,8 +21325,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/turf/open/floor/plasteel/dark,
/area/aisat)
@@ -22142,9 +21825,7 @@
"aUY" = (
/obj/effect/turf_decal/delivery,
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
+/turf/open/floor/plasteel,
/area/engine/engineering)
"aUZ" = (
/obj/structure/disposalpipe/segment,
@@ -22199,7 +21880,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/yellow/side,
+/turf/closed/wall,
+/area/engine/engineering)
+"aVh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
/area/engine/engineering)
"aVk" = (
/obj/structure/window/reinforced{
@@ -22739,10 +22426,8 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aWu" = (
-/obj/machinery/door/airlock/external{
- name = "Escape Pod Four";
- req_access = null;
- req_access_txt = "32"
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -22797,8 +22482,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/command{
name = "Chief Engineer's Office";
- req_access_txt = "56";
- req_one_access_txt = "0"
+ req_access_txt = "56"
},
/obj/effect/turf_decal/bot{
dir = 1
@@ -23155,7 +22839,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
@@ -23931,7 +23614,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/open/floor/plating,
@@ -24575,7 +24257,6 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;48;50;1"
},
/turf/open/floor/plating,
@@ -24618,7 +24299,6 @@
"bak" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Maintenance";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/structure/cable/yellow{
@@ -24744,7 +24424,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -24758,7 +24437,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -25672,8 +25350,7 @@
/area/maintenance/central)
"bch" = (
/obj/machinery/door/airlock{
- name = "Central Emergency Storage";
- req_access_txt = "0"
+ name = "Central Emergency Storage"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27306,7 +26983,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
- req_access_txt = "0";
req_one_access_txt = "23;30"
},
/obj/structure/cable/yellow{
@@ -27447,8 +27123,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "MiniSat Airlock Access";
- req_access_txt = "0"
+ name = "MiniSat Airlock Access"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -27740,7 +27415,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Mailroom";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -27814,7 +27488,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Office";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28522,8 +28195,7 @@
},
/obj/machinery/door/window{
dir = 8;
- name = "MiniSat Airlock Access";
- req_access_txt = "0"
+ name = "MiniSat Airlock Access"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/dark,
@@ -28627,7 +28299,6 @@
},
/obj/machinery/door/airlock/security{
name = "Customs Desk";
- req_access = null;
req_access_txt = "1"
},
/obj/effect/landmark/event_spawn,
@@ -28657,7 +28328,6 @@
dir = 10
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;48;50;1"
},
/turf/open/floor/plating,
@@ -29245,7 +28915,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
name = "Escape Pod Four";
- req_access = null;
req_access_txt = "32"
},
/turf/open/floor/plasteel,
@@ -30192,7 +29861,6 @@
/area/ai_monitored/turret_protected/aisat_interior)
"blI" = (
/obj/machinery/door/airlock/highsecurity{
- locked = 0;
name = "AI Chamber";
req_access_txt = "16"
},
@@ -30676,7 +30344,6 @@
"bmI" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -30746,7 +30413,6 @@
/area/crew_quarters/bar)
"bmQ" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/obj/structure/disposalpipe/segment,
@@ -30759,8 +30425,7 @@
"bmS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
- name = "Starboard Emergency Storage";
- req_access_txt = "0"
+ name = "Starboard Emergency Storage"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -30770,7 +30435,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/turf/open/floor/plating,
@@ -30821,7 +30485,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Foyer";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -31007,8 +30670,7 @@
"bns" = (
/obj/machinery/door/window{
dir = 1;
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner{
@@ -33014,7 +32676,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/turf/open/floor/plating,
@@ -33084,7 +32745,6 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/turf/open/floor/plating,
@@ -33354,8 +33014,7 @@
"brS" = (
/obj/machinery/door/window{
dir = 2;
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner{
@@ -34060,7 +33719,6 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "20;12"
},
/turf/open/floor/plating,
@@ -34211,7 +33869,6 @@
"btz" = (
/obj/machinery/door/airlock/maintenance{
name = "Engineering Foyer Maintenance";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -34461,7 +34118,6 @@
/area/hallway/primary/port)
"bud" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27;37"
},
/obj/structure/cable/yellow{
@@ -34553,7 +34209,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34641,7 +34296,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/turf/open/floor/plasteel/dark,
@@ -34680,7 +34334,6 @@
"buA" = (
/obj/machinery/door/airlock/command{
name = "Command Desk";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/vault,
@@ -34862,7 +34515,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;25;46"
},
/turf/open/floor/plating,
@@ -35314,6 +34966,15 @@
dir = 5
},
/area/hallway/primary/port)
+"bvT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science/xenobiology)
"bvU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
@@ -35669,7 +35330,6 @@
"bwG" = (
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
- req_access = null;
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36242,8 +35902,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Auxiliary Bathrooms";
- req_access_txt = "0"
+ name = "Auxiliary Bathrooms"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36361,8 +36020,7 @@
/obj/machinery/door/window/northleft{
dir = 2;
icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/machinery/door/poddoor/preopen{
id = "hop";
@@ -36392,7 +36050,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Council Chamber";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/dark,
@@ -36435,7 +36092,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Council Chamber";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/plasteel/dark,
@@ -36461,7 +36117,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/turf/open/floor/plasteel/dark,
@@ -37063,8 +36718,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/turf/open/floor/plating,
/area/maintenance/port)
@@ -37132,8 +36786,7 @@
/area/library)
"bzG" = (
/obj/machinery/door/morgue{
- name = "Study #1";
- req_access_txt = "0"
+ name = "Study #1"
},
/turf/open/floor/plasteel/cult{
dir = 2
@@ -37141,8 +36794,7 @@
/area/library)
"bzH" = (
/obj/machinery/door/morgue{
- name = "Study #2";
- req_access_txt = "0"
+ name = "Study #2"
},
/turf/open/floor/plasteel/cult{
dir = 2
@@ -37835,7 +37487,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -38109,7 +37760,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "20;12"
},
/obj/structure/disposalpipe/segment,
@@ -38406,6 +38056,7 @@
/obj/machinery/atmospherics/pipe/simple/purple/visible{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/space,
/area/space/nearstation)
"bCA" = (
@@ -39201,7 +38852,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -39885,7 +39535,6 @@
"bFA" = (
/obj/machinery/door/airlock{
name = "Theatre Stage";
- req_access_txt = "0";
req_one_access_txt = "12;46"
},
/obj/structure/cable/yellow{
@@ -40204,7 +39853,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/item/soap/nanotrasen,
@@ -40228,7 +39876,6 @@
"bGq" = (
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;37"
},
/turf/open/floor/plating,
@@ -40333,7 +39980,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Teleport Access";
- req_access_txt = "0";
req_one_access_txt = "17;19"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -40446,7 +40092,6 @@
/area/hallway/secondary/command)
"bGT" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;17"
},
/obj/structure/cable/yellow{
@@ -40869,7 +40514,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -41181,6 +40825,12 @@
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
+"bIv" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"bIw" = (
/obj/machinery/light,
/obj/machinery/camera{
@@ -41475,7 +41125,6 @@
/area/tcommsat/computer)
"bJj" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27;37"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -41519,7 +41168,6 @@
/area/hallway/secondary/entry)
"bJp" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27;37"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42223,8 +41871,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/obj/machinery/camera{
c_tag = "MiniSat Exterior - Aft Starboard";
@@ -42491,9 +42138,7 @@
"bLu" = (
/obj/machinery/door/window/northleft{
dir = 8;
- name = "Disposals Chute";
- pixel_x = -1;
- req_access_txt = "0"
+ name = "Disposals Chute"
},
/obj/machinery/disposal/deliveryChute{
dir = 8;
@@ -42853,6 +42498,10 @@
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/engine/atmos)
+"bMi" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
"bMj" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
@@ -43726,8 +43375,7 @@
},
/obj/machinery/door/window{
dir = 2;
- name = "MiniSat Walkway Access";
- req_access_txt = "0"
+ name = "MiniSat Walkway Access"
},
/obj/machinery/camera{
c_tag = "MiniSat Exterior - Aft Port";
@@ -43782,7 +43430,6 @@
/area/hallway/secondary/entry)
"bOe" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27"
},
/obj/structure/cable/yellow{
@@ -44468,8 +44115,7 @@
"bPI" = (
/obj/machinery/door/airlock/maintenance/abandoned{
name = "Vacant Office Maintenance";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/open/floor/plating,
/area/maintenance/port)
@@ -45955,7 +45601,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;17"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -45986,7 +45631,6 @@
},
/obj/machinery/door/airlock/medical/glass{
name = "Service Door";
- req_access_txt = "0";
req_one_access_txt = "35;28"
},
/turf/open/floor/plasteel/cafeteria{
@@ -45998,8 +45642,7 @@
/obj/machinery/door/window/eastleft{
dir = 1;
name = "Kitchen Window";
- req_access_txt = "28";
- req_one_access_txt = "0"
+ req_access_txt = "28"
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -46007,7 +45650,6 @@
/obj/machinery/door/window/eastleft{
dir = 2;
name = "Hydroponics Window";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
/obj/effect/turf_decal/delivery,
@@ -46207,10 +45849,7 @@
/turf/closed/wall,
/area/maintenance/solars/port/aft)
"bTq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
+/turf/open/floor/plating/airless,
/area/engine/engineering)
"bTr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -46283,7 +45922,6 @@
"bTB" = (
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;37"
},
/obj/structure/disposalpipe/segment{
@@ -46972,7 +46610,6 @@
/area/maintenance/port)
"bUS" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;25;28"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -47214,7 +46851,6 @@
/obj/machinery/door/window/westleft{
dir = 4;
name = "Hydroponics Desk";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
/turf/open/floor/plasteel/green{
@@ -47278,6 +46914,7 @@
/turf/closed/wall,
/area/hallway/secondary/service)
"bVA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock{
name = "Service Hall";
req_access_txt = "null";
@@ -47564,7 +47201,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;37;25;28"
},
/turf/open/floor/plating,
@@ -47883,7 +47519,6 @@
/obj/machinery/door/window/westright{
dir = 4;
name = "Hydroponics Desk";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
/obj/item/folder/white{
@@ -48037,9 +47672,6 @@
/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/machinery/light/small{
- dir = 1
- },
/turf/open/floor/plating,
/area/maintenance/starboard)
"bXc" = (
@@ -48451,7 +48083,6 @@
/area/hallway/primary/central)
"bYb" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;35;47"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -48702,7 +48333,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -48796,7 +48426,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;25;28"
},
/turf/open/floor/plating,
@@ -49816,8 +49445,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Hydroponics Backroom";
- req_access_txt = "35";
- req_one_access_txt = "0"
+ req_access_txt = "35"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -49860,8 +49488,7 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
- req_access_txt = "35";
- req_one_access_txt = "0"
+ req_access_txt = "35"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -50233,7 +49860,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5"
},
/turf/open/floor/plating,
@@ -50899,8 +50525,7 @@
/area/engine/atmos)
"ccW" = (
/obj/machinery/door/airlock/external{
- req_access_txt = "24";
- req_one_access_txt = "0"
+ req_access_txt = "24"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -51347,8 +50972,7 @@
"cdU" = (
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
- req_access_txt = "35";
- req_one_access_txt = "0"
+ req_access_txt = "35"
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
@@ -51418,9 +51042,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ced" = (
@@ -51440,7 +51062,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
@@ -51453,6 +51075,9 @@
name = "Fuel Pipe to Incinerator";
on = 0
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"ceg" = (
@@ -51588,8 +51213,7 @@
/obj/structure/table/glass,
/obj/machinery/door/window/eastleft{
name = "First-Aid Supplies";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
@@ -52081,6 +51705,7 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cfq" = (
@@ -52093,7 +51718,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "input port pump"
@@ -52109,6 +51733,7 @@
/area/maintenance/disposal/incinerator)
"cft" = (
/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cfu" = (
@@ -52545,8 +52170,7 @@
"cgp" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Maintenance";
- req_access_txt = "47";
- req_one_access_txt = "0"
+ req_access_txt = "47"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
@@ -52575,6 +52199,7 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cgv" = (
@@ -52597,7 +52222,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"cgy" = (
@@ -52828,7 +52452,6 @@
"cgU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -52846,7 +52469,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -52856,7 +52478,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Desk";
req_access_txt = "5"
},
@@ -53028,7 +52649,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/obj/structure/disposalpipe/segment,
@@ -53174,6 +52794,9 @@
/obj/structure/extinguisher_cabinet{
pixel_y = -31
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"chI" = (
@@ -53182,6 +52805,9 @@
dir = 2;
name = "output gas to space"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
"chJ" = (
@@ -53192,12 +52818,8 @@
dir = 4
},
/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/disposal/incinerator)
-"chL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal/incinerator)
@@ -53527,7 +53149,6 @@
"civ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
@@ -53822,7 +53443,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
@@ -54513,24 +54133,14 @@
/area/maintenance/starboard/aft)
"ckC" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/components/binary/pump{
+/obj/machinery/atmospherics/components/binary/pump/on{
dir = 2;
- name = "Incinerator Output Pump";
- on = 1;
- use_power = 0
+ name = "Incinerator Output Pump"
},
/obj/structure/disposalpipe/segment,
/turf/open/space,
/area/maintenance/disposal/incinerator)
"ckD" = (
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_exterior";
- layer = 3.1;
- idSelf = "incinerator_access_control";
- name = "Incinerator airlock control";
- pixel_x = 8;
- pixel_y = -24
- },
/obj/machinery/light/small{
dir = 8
},
@@ -54541,21 +54151,25 @@
dir = 1;
on = 1
},
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
- name = "Incinerator airlock control";
- pixel_x = 8;
+/obj/machinery/airlock_sensor{
+ id_tag = "incinerator_airlock_sensor";
+ master_tag = "incinerator_airlock_control";
+ pixel_x = -8;
pixel_y = 24
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"ckE" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 8;
+ frequency = 1449;
+ id = "incinerator_airlock_pump"
},
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
@@ -54570,6 +54184,9 @@
dir = 2;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"ckG" = (
@@ -54678,8 +54295,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Observation";
- req_access_txt = "0"
+ name = "Observation"
},
/turf/open/floor/plasteel/dark,
/area/medical/surgery)
@@ -55154,9 +54770,7 @@
/area/maintenance/starboard/aft)
"clX" = (
/obj/machinery/door/airlock/maintenance/abandoned{
- locked = 0;
name = "Storage Room";
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55270,8 +54884,7 @@
"cmn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
- name = "Observation";
- req_access_txt = "0"
+ name = "Observation"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
@@ -55492,7 +55105,6 @@
"cmM" = (
/obj/machinery/door/airlock{
name = "Research Emergency Storage";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/structure/cable/yellow{
@@ -55510,7 +55122,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/medical{
name = "Research Break Room";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -55667,7 +55278,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cnd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 1;
name = "incinerator output intake"
},
@@ -57191,8 +56802,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- name = "Surgery Observation";
- req_access_txt = "0"
+ name = "Surgery Observation"
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
@@ -58451,8 +58061,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer's Office";
- req_access_txt = "40";
- req_one_access_txt = "0"
+ req_access_txt = "40"
},
/turf/open/floor/plasteel/barber{
dir = 8
@@ -58602,7 +58211,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;9"
},
/turf/open/floor/plating,
@@ -58647,8 +58255,7 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Aft Emergency Storage";
- req_access_txt = "0"
+ name = "Aft Emergency Storage"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -58685,7 +58292,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "7;47;29;12"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -58746,7 +58352,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Research Maintenance";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59057,8 +58662,7 @@
"ctC" = (
/obj/machinery/door/airlock/maintenance{
name = "Genetics Maintenance";
- req_access_txt = "9";
- req_one_access_txt = "0"
+ req_access_txt = "9"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
@@ -59117,7 +58721,6 @@
"ctM" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Testing Range Maintenance";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
/turf/open/floor/plating,
@@ -60151,8 +59754,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
- req_access_txt = "30";
- req_one_access_txt = "0"
+ req_access_txt = "30"
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
@@ -61274,10 +60876,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
id_tag = "AuxGenetics";
- locked = 0;
name = "Genetics Lab";
- req_access_txt = "9";
- req_one_access_txt = "0"
+ req_access_txt = "9"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -61310,10 +60910,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
id_tag = "AuxGenetics";
- locked = 0;
name = "Genetics Access";
- req_access_txt = "9";
- req_one_access_txt = "0"
+ req_access_txt = "9"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -61639,9 +61237,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/machinery/power/apc{
+/obj/machinery/power/apc/unlocked{
dir = 4;
- locked = 0;
name = "Cloning Lab APC";
areastring = "/area/medical/genetics/cloning";
pixel_x = 24
@@ -61811,8 +61408,7 @@
base_state = "right";
dir = 1;
icon_state = "right";
- name = "door";
- req_access_txt = "0"
+ name = "door"
},
/turf/open/floor/engine{
dir = 9;
@@ -61929,7 +61525,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/turf/open/floor/plating,
@@ -62268,8 +61863,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -62371,7 +61965,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research Testing Range";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -62571,7 +62164,6 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchExt";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/turf_decal/delivery,
@@ -62775,8 +62367,7 @@
/obj/machinery/button/door{
id = "researchrangeshutters";
name = "Blast Door Control";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
@@ -63733,7 +63324,6 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchExt";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/turf_decal/delivery,
@@ -64577,7 +64167,6 @@
/area/medical/virology)
"cEN" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/obj/structure/disposalpipe/segment,
@@ -66185,7 +65774,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/turf/open/floor/plating,
@@ -66259,8 +65847,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -66303,7 +65890,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Research Division Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable/yellow{
@@ -66433,7 +66019,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research and Development Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/turf/open/floor/plasteel/whitepurple{
@@ -66563,7 +66148,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -66895,7 +66479,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Research Lab Maintenance";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/obj/effect/turf_decal/stripes/line{
@@ -67000,8 +66583,7 @@
},
/obj/machinery/door/airlock/maintenance/abandoned{
name = "Medical Surplus Storeroom";
- req_access_txt = "12";
- req_one_access_txt = "0"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/aft)
@@ -67627,9 +67209,7 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance/abandoned{
- locked = 0;
name = "Storage Room";
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/turf/open/floor/plating,
@@ -67761,7 +67341,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/maintenance{
name = "Crematorium Maintenance";
- req_access_txt = "0";
req_one_access_txt = "27"
},
/turf/open/floor/plating,
@@ -67774,7 +67353,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Chapel Office Maintenance";
- req_access_txt = "0";
req_one_access_txt = "22"
},
/turf/open/floor/plating,
@@ -67868,7 +67446,6 @@
/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,
@@ -67962,7 +67539,6 @@
/area/hallway/secondary/exit/departure_lounge)
"cLv" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;47"
},
/obj/structure/cable/yellow{
@@ -68029,7 +67605,6 @@
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{
@@ -68054,13 +67629,16 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"cLC" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idInterior = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Incinerator Access Console";
+ airpump_tag = "incinerator_airlock_pump";
+ exterior_door_tag = "incinerator_airlock_exterior";
+ id_tag = "incinerator_access_control";
+ interior_door_tag = "incinerator_airlock_interior";
pixel_x = 8;
pixel_y = -24;
+ sanitize_external = 1;
+ sensor_tag = "incinerator_airlock_sensor";
req_access_txt = "12"
},
/obj/machinery/button/ignition{
@@ -68102,6 +67680,15 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
+"cLE" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1;
+ name = "euthanization chamber freezer";
+ on = 1;
+ target_temperature = 80
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
"cLF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -68297,7 +67884,6 @@
"cMb" = (
/obj/machinery/door/airlock/maintenance{
name = "Chapel Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;22"
},
/obj/structure/cable/yellow{
@@ -68738,8 +68324,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
dir = 4;
@@ -69262,8 +68847,7 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Crematorium";
- req_access_txt = "22;27";
- req_one_access_txt = "0"
+ req_access_txt = "22;27"
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
@@ -70685,8 +70269,7 @@
id = "chapel_shutters_space";
name = "chapel shutters control";
pixel_x = -6;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/obj/machinery/light_switch{
pixel_x = 6;
@@ -70719,8 +70302,7 @@
idDoor = "xeno_airlock_exterior";
idSelf = "xeno_airlock_control";
name = "Access Button";
- pixel_x = -24;
- req_access_txt = "0"
+ pixel_x = -24
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -70807,8 +70389,7 @@
/area/chapel/main)
"cRF" = (
/obj/machinery/door/morgue{
- name = "Chapel Garden";
- req_access_txt = "0"
+ name = "Chapel Garden"
},
/turf/open/floor/plasteel/cult{
dir = 2
@@ -70822,8 +70403,7 @@
/obj/machinery/button/door{
id = "chapel_shutters_parlour";
name = "chapel shutters control";
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/turf/open/floor/plasteel/vault,
/area/chapel/main)
@@ -71672,8 +71252,7 @@
},
/obj/machinery/door/airlock/hatch{
name = "Test Chamber Maintenance";
- req_access_txt = "47";
- req_one_access_txt = "0"
+ req_access_txt = "47"
},
/turf/open/floor/plating,
/area/science/xenobiology)
@@ -71776,6 +71355,10 @@
/obj/effect/landmark/xmastree,
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"cTT" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/science/xenobiology)
"cUH" = (
/obj/structure/table/optable,
/turf/open/floor/plasteel/white,
@@ -72021,12 +71604,6 @@
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"cWu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"cWA" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
@@ -72048,10 +71625,7 @@
/area/construction/mining/aux_base)
"cWM" = (
/obj/machinery/door/airlock/external{
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Construction Zone"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
@@ -72075,12 +71649,7 @@
},
/area/construction/mining/aux_base)
"cXI" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = 32
- },
-/obj/machinery/light/small{
- dir = 1
- },
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
"cXR" = (
@@ -72092,12 +71661,11 @@
},
/area/construction/mining/aux_base)
"cXZ" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "13"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/window/reinforced{
+ dir = 8
},
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
"cYc" = (
@@ -72117,9 +71685,8 @@
},
/area/science/robotics/lab)
"cYj" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
+/obj/structure/closet/firecloset,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/starboard)
"cYE" = (
@@ -72175,7 +71742,6 @@
},
/obj/machinery/door/airlock/engineering{
name = "Auxillary Base Construction";
- req_access_txt = "0";
req_one_access_txt = "32;47;48"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -72247,6 +71813,17 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
+"cZv" = (
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"cZM" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Fore Starboard";
+ dir = 8;
+ network = list("singularity")
+ },
+/turf/open/floor/plating/airless,
+/area/space)
"cZR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -72388,6 +71965,40 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
+"daP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science/xenobiology)
+"daQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"daR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1;
+ external_pressure_bound = 140;
+ name = "server vent";
+ pressure_checks = 0
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"daS" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"daW" = (
/obj/machinery/button/door{
id = "engpa";
@@ -72519,6 +72130,20 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
+"dbv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small,
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"dbw" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Kill Chamber";
+ dir = 1;
+ network = list("ss13","rd","xeno");
+ start_active = 1
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
"dbE" = (
/obj/machinery/plantgenes,
/obj/effect/turf_decal/stripes/line{
@@ -72544,7 +72169,6 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchInt";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/turf_decal/delivery,
@@ -72562,7 +72186,6 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchInt";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/turf_decal/delivery,
@@ -72623,7 +72246,6 @@
"dbP" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/structure/cable{
@@ -72719,8 +72341,7 @@
idSelf = "xeno_airlock_control";
name = "Access Button";
pixel_x = 29;
- pixel_y = -8;
- req_access_txt = "0"
+ pixel_y = -8
},
/obj/machinery/firealarm{
dir = 2;
@@ -72924,6 +72545,19 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"dcm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/camera_advanced/xenobio,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"dcn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72940,6 +72574,19 @@
},
/turf/open/floor/plasteel,
/area/science/xenobiology)
+"dco" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/computer/camera_advanced/xenobio,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"dcp" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -72997,6 +72644,18 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"dcv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"dcw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -73004,6 +72663,16 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/science/xenobiology)
+"dcx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/science/xenobiology)
"dcy" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
@@ -73075,6 +72744,21 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"dcJ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/extinguisher{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/extinguisher,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"dcK" = (
/obj/machinery/disposal/bin,
/obj/structure/sign/warning/deathsposal{
@@ -73423,8 +73107,7 @@
"ddp" = (
/obj/machinery/door/airlock/hatch{
name = "Test Chamber Maintenance";
- req_access_txt = "47";
- req_one_access_txt = "0"
+ req_access_txt = "47"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -73492,11 +73175,53 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
+"ddx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair,
+/obj/item/cigbutt,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"ddy" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
/area/maintenance/department/science/xenobiology)
+"ddz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"ddA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ glass = 1;
+ name = "Slime Euthanization Chamber";
+ opacity = 0;
+ req_access_txt = "55"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"ddB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
+ dir = 1;
+ external_pressure_bound = 120;
+ name = "server vent"
+ },
+/turf/open/floor/circuit/killroom,
+/area/science/xenobiology)
+"ddC" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/turf/open/floor/plating/airless,
+/area/science/xenobiology)
"ddE" = (
/obj/effect/landmark/start/cook,
/obj/machinery/holopad,
@@ -73514,7 +73239,10 @@
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
"ddO" = (
-/turf/open/floor/plating/airless,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
/area/engine/engineering)
"ddP" = (
/obj/structure/disposalpipe/segment{
@@ -73576,6 +73304,13 @@
},
/turf/open/space,
/area/space)
+"deh" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"dem" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -73588,11 +73323,17 @@
dir = 1
},
/turf/open/floor/plating/airless,
-/area/space/nearstation)
+/area/space)
"der" = (
/obj/structure/closet/secure_closet/engineering_welding,
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
+"deu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/space)
"dev" = (
/obj/machinery/field/generator{
anchored = 1;
@@ -73601,8 +73342,15 @@
/turf/open/floor/plating/airless,
/area/space/nearstation)
"dew" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/turf/open/space,
-/area/space/nearstation)
+/area/space)
"deB" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "engpa";
@@ -73731,6 +73479,10 @@
/obj/structure/cable/white{
icon_state = "1-4"
},
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
"dga" = (
@@ -73740,13 +73492,10 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"dgc" = (
-/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{
- icon_state = "platingdmg3"
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
},
+/turf/open/floor/plating,
/area/maintenance/starboard)
"dgd" = (
/obj/structure/cable/white{
@@ -73767,6 +73516,12 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"dgf" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space,
+/area/space/nearstation)
"dgg" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -73778,32 +73533,74 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"dgj" = (
-/obj/structure/grille,
-/obj/structure/cable/white{
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
"dgk" = (
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/corner{
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
"dgm" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
},
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"dgo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgr" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgt" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgu" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space/nearstation)
+"dgv" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"dgw" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
"dgz" = (
/obj/structure/closet/toolcloset,
/obj/effect/turf_decal/delivery,
@@ -73811,13 +73608,134 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"dgA" = (
-/obj/machinery/light{
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"dgB" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"dgI" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgJ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
+/turf/open/space,
+/area/space/nearstation)
+"dgK" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
+"dgN" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"dgO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"dgS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"dha" = (
+/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)
+"dhc" = (
+/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)
+"dhe" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
/turf/open/floor/plasteel,
-/area/engine/engineering)
-"dgI" = (
-/turf/closed/wall/mineral/plastitanium,
+/area/engine/atmos)
+"dhg" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"dhh" = (
+/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/engine/atmos)
+"dhi" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ icon_state = "left";
+ name = "Inner Pipe Access";
+ req_access_txt = "24"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"dhj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/atmos)
+"dhk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"dhl" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/space,
/area/space/nearstation)
"dhn" = (
/obj/structure/table,
@@ -73917,8 +73835,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
dir = 8;
@@ -74309,8 +74226,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/obj/structure/sign/poster/random{
pixel_y = -32
@@ -74915,6 +74831,36 @@
"dlV" = (
/turf/closed/wall/r_wall,
/area/maintenance/department/science/xenobiology)
+"dmq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ glass = 1;
+ name = "Slime Euthanization Chamber";
+ opacity = 0;
+ req_access_txt = "55"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"dmr" = (
+/obj/machinery/door/airlock/research{
+ glass = 1;
+ name = "Slime Euthanization Chamber";
+ opacity = 0;
+ req_access_txt = "55"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"dmD" = (
/obj/structure/displaycase/trophy,
/turf/open/floor/wood,
@@ -75092,14 +75038,6 @@
icon_state = "platingdmg2"
},
/area/maintenance/port/fore)
-"drT" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"dsg" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -75140,13 +75078,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"dtL" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space,
-/area/space)
"dtP" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -75442,7 +75373,6 @@
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{
@@ -76177,23 +76107,17 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
-"dPf" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/obj/structure/grille,
+"dRu" = (
+/obj/structure/cable/white,
/obj/effect/turf_decal/stripes/line{
- dir = 10
+ dir = 1
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ state = 2
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"dPp" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"dYu" = (
/obj/machinery/door/airlock/external{
name = "Auxiliary Airlock"
@@ -76203,19 +76127,6 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"dZD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space)
-"eln" = (
-/turf/open/space/basic,
-/area/engine/engineering)
-"enN" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"eoK" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -76248,17 +76159,6 @@
},
/turf/open/floor/plasteel,
/area/science/circuit)
-"esV" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"evy" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -76269,25 +76169,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"eEu" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "External Containment Access";
- req_access_txt = "10; 13"
- },
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"eFN" = (
/obj/structure/bodycontainer/crematorium{
id = "crematoriumChapel";
@@ -76295,6 +76176,12 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
+"eMF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
"eXy" = (
/obj/machinery/airalarm{
pixel_y = 32
@@ -76318,27 +76205,24 @@
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/engine/engineering)
-"fjy" = (
+"fnV" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Containment Access";
+ req_access_txt = "10; 13"
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
/obj/effect/turf_decal/stripes/line{
- dir = 5
+ dir = 8
},
-/turf/open/floor/plating/airless,
-/area/space)
-"foU" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the Engine.";
- dir = 8;
- layer = 4;
- name = "Engine Monitor";
- network = list("singularity");
- pixel_x = 30
- },
-/turf/open/floor/plasteel/yellow/side{
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/engine/engineering)
"fDD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -76346,19 +76230,16 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"fGs" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
+"fMR" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"fWY" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"fWO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
+/turf/open/space,
/area/space)
"gfh" = (
/obj/machinery/libraryscanner,
@@ -76382,14 +76263,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"goZ" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"gEk" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -76415,18 +76288,16 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/atmos)
-"gKb" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Fore Starboard";
- dir = 8;
- network = list("singularity")
- },
-/turf/open/floor/plating/airless,
-/area/space)
"gLC" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel,
/area/science/misc_lab)
+"gNd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/space)
"gNe" = (
/obj/machinery/light/small{
dir = 8
@@ -76439,6 +76310,22 @@
/obj/item/device/integrated_circuit_printer,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"gRU" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"gXY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"hfJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -76446,6 +76333,10 @@
/obj/machinery/autolathe,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"hkk" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"hyP" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod Two"
@@ -76455,9 +76346,21 @@
},
/turf/open/floor/plating,
/area/security/prison)
-"hWU" = (
+"hCY" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/power/grounding_rod,
/turf/open/floor/plating/airless,
/area/space)
+"ine" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"ioI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76469,6 +76372,21 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/science/circuit)
+"ixa" = (
+/obj/machinery/light,
+/obj/machinery/vending/kink,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"iyK" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/space)
"izu" = (
/obj/machinery/autolathe{
name = "public autolathe"
@@ -76485,37 +76403,13 @@
},
/turf/open/floor/plasteel/whitepurple,
/area/science/lab)
-"iOa" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/maintenance/starboard)
-"iTS" = (
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/effect/turf_decal/delivery,
-/obj/structure/table,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
+"jeJ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/area/engine/engineering)
-"iYY" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"jjF" = (
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/space,
+/area/space)
"jwW" = (
/turf/closed/wall/mineral/plastitanium,
/area/crew_quarters/fitness/recreation)
@@ -76538,7 +76432,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -76546,21 +76439,14 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
-"jFx" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "13"
+"jAo" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Containment - Aft Starboard";
+ dir = 8;
+ network = list("singularity")
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"jIV" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
+/turf/open/floor/plating/airless,
+/area/space)
"jKK" = (
/obj/machinery/door/airlock/external{
req_access_txt = "13"
@@ -76570,11 +76456,19 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"jYQ" = (
-/obj/machinery/light/small{
+"jOg" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"jWX" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/turf/open/floor/plating,
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
/area/engine/engineering)
"kfu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -76609,6 +76503,12 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
+"kBP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"kDM" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -76621,6 +76521,12 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"kLA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space)
"kOt" = (
/obj/item/device/multitool,
/obj/item/screwdriver,
@@ -76633,6 +76539,12 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"kRZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"kVo" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -76641,12 +76553,29 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"kYn" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"lal" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/science/circuit)
+"ldf" = (
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"llb" = (
/obj/structure/table/reinforced,
/obj/item/device/integrated_circuit_printer,
@@ -76681,12 +76610,20 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"lHL" = (
-/turf/open/space/basic,
-/area/space/nearstation)
-"lLj" = (
+"lHr" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the Engine.";
+ dir = 8;
+ layer = 4;
+ name = "Engine Monitor";
+ network = list("singularity");
+ pixel_x = 30
+ },
/turf/open/floor/plasteel/yellow/side{
- dir = 8
+ dir = 4
},
/area/engine/engineering)
"lMz" = (
@@ -76706,6 +76643,13 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"lUz" = (
+/obj/structure/grille,
+/obj/structure/cable/white{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"lWY" = (
/obj/machinery/door/airlock/hatch{
name = "Telecomms Server Room"
@@ -76730,12 +76674,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"moI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/space)
"mvj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -76745,12 +76683,6 @@
},
/turf/closed/wall,
/area/hallway/secondary/service)
-"mwK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/space)
"mzh" = (
/obj/machinery/firealarm{
dir = 1;
@@ -76779,30 +76711,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/circuit)
-"nte" = (
-/obj/machinery/the_singularitygen/tesla,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"nwU" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "External Containment Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"nyo" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -76828,7 +76736,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/delivery,
@@ -76837,7 +76744,24 @@
},
/turf/open/floor/plasteel,
/area/construction/storage/wing)
-"nKh" = (
+"nKv" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"nSm" = (
+/obj/structure/particle_accelerator/particle_emitter/left{
+ icon_state = "emitter_left";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"nXa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"nYS" = (
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
@@ -76846,24 +76770,6 @@
/obj/structure/target_stake,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"obN" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space,
-/area/space)
-"ocj" = (
-/obj/structure/cable/white{
- icon_state = "2-4"
- },
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"ocT" = (
/obj/machinery/light{
dir = 1
@@ -76890,10 +76796,61 @@
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"ooF" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"osi" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"oub" = (
/obj/structure/sign/poster/official/random,
/turf/closed/wall,
/area/hydroponics)
+"ozT" = (
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/effect/turf_decal/delivery,
+/obj/structure/table,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/engineering)
+"oEB" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"oHF" = (
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"oKW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
"oLW" = (
/obj/structure/table/reinforced,
/obj/structure/cable/yellow{
@@ -76930,6 +76887,22 @@
/obj/item/pen,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"pmc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"poQ" = (
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"pvA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -76962,6 +76935,10 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
+"pOP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"pSX" = (
/obj/machinery/door/airlock/external{
name = "Auxiliary Escape Airlock"
@@ -76971,20 +76948,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"pVo" = (
-/obj/machinery/light,
-/obj/machinery/vending/kink,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 2
- },
-/area/crew_quarters/locker)
-"pWF" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"qnJ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -77015,12 +76978,6 @@
"qBq" = (
/turf/closed/wall/mineral/plastitanium,
/area/hallway/secondary/entry)
-"qJG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"qJZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -77035,6 +76992,26 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"rpB" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Containment Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"rzX" = (
/obj/structure/chair/office/light{
dir = 1;
@@ -77044,18 +77021,6 @@
dir = 1
},
/area/science/lab)
-"rEi" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"rFx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/engine/engineering)
"rQK" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -77075,28 +77040,14 @@
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel,
/area/science/mixing)
-"rTo" = (
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"rVX" = (
-/obj/structure/particle_accelerator/particle_emitter/left{
- icon_state = "emitter_left";
+"saU" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/light{
dir = 4
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"rWa" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
},
-/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
"sdi" = (
/obj/effect/turf_decal/stripes/line{
@@ -77108,13 +77059,23 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/space/nearstation)
+"smP" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable/white{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"sGh" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -77134,21 +77095,12 @@
"sJW" = (
/turf/closed/wall/mineral/plastitanium,
/area/engine/break_room)
-"sOW" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"sSU" = (
-/turf/closed/wall/r_wall,
-/area/space)
-"tdB" = (
-/obj/machinery/light/small{
- dir = 8
+"tdH" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/maintenance/starboard/fore)
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"tjH" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/libraryconsole/bookmanagement,
@@ -77179,9 +77131,19 @@
},
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
-"tMT" = (
-/obj/structure/lattice,
-/turf/open/space,
+"tLB" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"tPX" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
/area/engine/engineering)
"tVY" = (
/obj/structure/closet/crate,
@@ -77195,6 +77157,34 @@
/obj/item/gun/energy/laser/practice,
/turf/open/floor/plasteel/white,
/area/science/circuit)
+"tZu" = (
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"uaX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"udi" = (
+/obj/structure/cable/white{
+ icon_state = "2-4"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"upN" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -77233,11 +77223,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"uQo" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engineering)
"uRM" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -77266,30 +77251,38 @@
},
/turf/open/floor/plasteel,
/area/science/misc_lab)
-"vmz" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space)
-"vAk" = (
-/obj/machinery/light/small{
- dir = 1
+"vyx" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/disposal/incinerator)
+"vJj" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/engine/engineering)
"vLD" = (
/obj/structure/lattice,
/turf/open/space/basic,
/area/space)
-"vSl" = (
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
+"wby" = (
+/turf/open/space/basic,
+/area/engine/engineering)
+"wca" = (
/obj/structure/cable/white{
- icon_state = "1-8"
+ icon_state = "1-4"
+ },
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
+"wgw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"wiZ" = (
/obj/machinery/door/airlock/external{
name = "Security External Airlock";
@@ -77302,8 +77295,8 @@
/area/security/prison)
"wxc" = (
/obj/machinery/door/airlock/external{
- req_access_txt = "24";
- req_one_access_txt = "0"
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -77340,43 +77333,30 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/science/misc_lab)
-"xcM" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/engine/engineering)
-"xfK" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/power/tesla_coil,
+"xbG" = (
/turf/open/floor/plating/airless,
/area/space)
+"xfO" = (
+/obj/structure/grille,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable/white{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
"xkG" = (
/obj/item/device/integrated_electronics/wirer,
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"xqB" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/power/emitter{
- anchored = 1;
- state = 2
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"xse" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/obj/structure/cable{
@@ -77404,19 +77384,10 @@
/obj/structure/chair/comfy,
/turf/open/floor/plasteel,
/area/science/misc_lab)
-"xLP" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space,
-/area/space)
-"xNI" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
+"xNH" = (
+/obj/machinery/the_singularitygen/tesla,
/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/area/space/nearstation)
"xVl" = (
/turf/closed/wall,
/area/hallway/secondary/service)
@@ -77427,24 +77398,16 @@
},
/turf/open/floor/plasteel/white,
/area/science/circuit)
-"xWZ" = (
-/obj/structure/cable/white{
- icon_state = "2-8"
+"ycI" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
},
-/obj/structure/grille,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/closed/wall/r_wall,
/area/engine/engineering)
-"yeY" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Containment - Aft Starboard";
- dir = 8;
- network = list("singularity")
+"yeD" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
},
-/turf/open/floor/plating/airless,
-/area/space)
+/area/engine/engineering)
"ygk" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -110315,8 +110278,8 @@ cRi
cRi
cRi
cRi
-aaX
-aju
+daP
+cLE
dlV
aaa
aaa
@@ -110572,7 +110535,7 @@ cSn
daF
daJ
cRi
-abd
+bvT
cRi
cRi
cRi
@@ -110829,10 +110792,10 @@ cSn
cSn
cSn
cRi
-acd
+dmq
cRi
-anz
-anz
+cZv
+cZv
cRi
aaf
aag
@@ -111060,8 +111023,8 @@ aaa
aaf
cRe
cRS
-aab
-aae
+dcm
+dcv
cRC
dcG
cSe
@@ -111086,10 +111049,10 @@ daB
daG
cSn
cRi
-aeD
-alr
-aov
-anz
+ddx
+ddz
+daR
+cZv
cRe
aaa
aaa
@@ -111343,12 +111306,12 @@ cSn
cSn
daL
cRi
-afQ
-amV
-apP
-aqe
-arF
-atC
+daQ
+ddA
+daS
+dbv
+cTT
+ddC
aaf
aaa
aaa
@@ -111574,8 +111537,8 @@ aaa
aaf
cRe
cRS
-aad
-aaU
+dco
+dcx
dcA
dcI
cRR
@@ -111600,10 +111563,10 @@ cSn
daH
daK
cRi
-ahT
-alr
-apX
-anz
+bIv
+ddz
+ddB
+cZv
cRe
aaa
aaf
@@ -111834,7 +111797,7 @@ dcb
cZa
dDI
dcB
-aaW
+dcJ
cRa
cSm
cSw
@@ -111857,10 +111820,10 @@ cSn
cSn
daN
cRi
-ajk
+dmr
cRi
-anz
-arh
+cZv
+dbw
cRi
aaa
aag
@@ -112520,7 +112483,7 @@ aPK
aQV
aOv
aTt
-pVo
+ixa
aUM
aYe
dnh
@@ -116929,10 +116892,10 @@ caX
ccH
cec
cfp
-cfq
+vyx
chJ
-cgz
-cgz
+wgw
+pmc
cgz
cgz
cgz
@@ -117444,7 +117407,7 @@ ccJ
cee
cfr
cgx
-chL
+cgx
cja
ckE
cmd
@@ -117652,8 +117615,8 @@ aFu
aBI
aBI
aJn
-lLj
-lLj
+ycI
+ycI
aNq
aBI
aPZ
@@ -117898,7 +117861,7 @@ arJ
arI
dnh
dqu
-tdB
+doh
axO
axY
aAo
@@ -117908,12 +117871,12 @@ aEn
aFv
aGV
aHX
-aBO
-aBO
-aBO
-aBO
+aCX
+aCX
+aCX
+aCX
aOO
-aBO
+aCX
aRp
aSv
aTH
@@ -117955,12 +117918,12 @@ bxc
bxc
bxc
ccL
-bxc
+bxl
cft
-cgz
-cgz
-cgz
-cgz
+pOP
+pOP
+pOP
+gXY
cgz
cng
cgz
@@ -118415,7 +118378,7 @@ avt
awJ
axS
axY
-jIV
+tPX
ddW
aCT
aEp
@@ -118676,15 +118639,15 @@ aAr
ddX
aCU
aCW
-aBO
+aCX
aGX
-aBO
-aBO
-aBO
+aCX
+aCX
+aCX
aSB
-aBO
-aBO
-aBO
+aCX
+aCX
+aCX
aGX
aBK
aTK
@@ -118929,23 +118892,23 @@ avv
axY
axU
ayS
-enN
+hkk
ddX
deb
-aBO
-aBO
-iTS
+aCX
+aCX
+ozT
deM
-uQo
-foU
+yeD
+lHr
aMg
-xcM
+saU
dfh
-aBO
-aBO
+aCX
+aCX
aBK
-dPp
-rFx
+deh
+aVe
axY
aYu
aYu
@@ -119189,7 +119152,7 @@ ddP
aAt
aBL
deb
-aBO
+aCX
aFA
axY
axY
@@ -119198,11 +119161,11 @@ axY
aMh
axY
axY
-nKh
-aBO
+nYS
+aCX
aSz
aTK
-aVe
+eMF
aJu
aYu
aZL
@@ -119446,7 +119409,7 @@ aAu
ddQ
aBM
aCV
-aBO
+aCX
aFB
axY
daW
@@ -119456,10 +119419,10 @@ aMi
cpR
axY
aQd
-aBO
+aCX
aSA
aTK
-aVe
+eMF
aJu
aYu
aZM
@@ -119703,20 +119666,20 @@ ayV
aAv
aBN
aCW
-aBO
+aCX
aFA
aGZ
-qJG
+kBP
aJu
aKG
aJu
dBy
aGZ
-nKh
-aBO
+nYS
+aCX
dfD
aTK
-rWa
+oKW
aJu
aYu
aZN
@@ -119957,21 +119920,21 @@ avz
axY
axY
ayW
-bTq
-dgA
-aBO
+uaX
aBO
+aCX
+aCX
aFC
axY
-qJG
+kBP
aJu
aKH
aMk
aNu
axY
dfp
+aCX
aBO
-dgA
dfP
dfY
axY
@@ -120216,26 +120179,26 @@ axY
ayX
axY
axY
-aBO
-aBO
+aCY
+aCX
der
axY
-qJG
+kBP
aJu
aKI
tDM
dBy
axY
dlI
-aBO
+oEB
axY
axY
ayX
axY
atm
dgc
-alq
-apc
+aqq
+aqr
aWu
bif
bif
@@ -120469,7 +120432,7 @@ ati
ajb
avB
axY
-jYQ
+ddO
bUw
aJu
axY
@@ -120477,10 +120440,10 @@ axY
axY
axY
djt
-qJG
+kBP
daZ
dbb
-rVX
+nSm
dBy
djt
axY
@@ -120488,10 +120451,10 @@ axY
axY
aJu
bUw
-iYY
+nKv
axY
-alq
-alq
+dgo
+apc
cXZ
atm
bfZ
@@ -120727,30 +120690,30 @@ ajb
avC
axY
axY
-eEu
+fnV
axY
axY
-ddO
+bTq
aEr
-ddO
+bTq
djt
-qJG
+kBP
aJu
-rEi
+ooF
dfa
aNv
djt
-ddO
+bTq
djx
axY
axY
-nwU
+rpB
axY
axY
-alq
+dgp
cXI
cYj
-iOa
+atm
bga
big
bga
@@ -120769,7 +120732,7 @@ bFS
bHy
bIV
bKC
-bAQ
+bMi
bNU
bMg
bQV
@@ -120984,12 +120947,12 @@ dpL
avD
axY
axY
-xNI
-ddO
-ddO
-ddO
-ddO
-ddO
+tdH
+bTq
+bTq
+bTq
+bTq
+bTq
djt
djt
djt
@@ -120997,17 +120960,17 @@ aRm
djt
djt
djt
-ddO
-ddO
-ddO
-ddO
+bTq
+bTq
+bTq
+bTq
dga
dgd
-dgj
+lUz
+dgp
+alr
+atm
atm
-alq
-jFx
-iOa
bgb
cTu
bgb
@@ -121026,8 +120989,8 @@ bFT
bHz
bIW
bKD
-bCi
-bCi
+dhe
+dhg
bPu
bPu
bPu
@@ -121242,9 +121205,9 @@ avE
axY
ayc
aza
-ddO
+bTq
aaa
-aCY
+hCY
dem
dem
deD
@@ -121258,12 +121221,12 @@ dem
dem
dfI
aaa
-ddO
-ddO
+bTq
+bTq
aYx
-sSU
-lHL
-lMJ
+dgr
+dgw
+dgA
dgI
bgb
cTi
@@ -121284,7 +121247,7 @@ bHy
bIX
bKE
bKE
-bKE
+dhh
bPv
bKE
bKE
@@ -121494,34 +121457,34 @@ apn
aqy
arT
apm
-vAk
+dnS
avB
axY
-goZ
-ddO
+tLB
+bTq
aAx
-sOW
+jOg
aIe
aOS
-mwK
-mwK
-mwK
-mwK
-mwK
-mwK
-mwK
-mwK
-mwK
+deu
+deu
+deu
+deu
+deu
+deu
+deu
+deu
+deu
dBB
aIe
-sOW
-cWu
-ddO
+jOg
+aVh
+bTq
aYx
-sSU
-lMJ
-lMJ
-lHL
+dgf
+dgj
+ack
+dgJ
bgb
bij
bgb
@@ -121541,7 +121504,7 @@ bHA
bIY
bKF
bMk
-bNV
+dhi
bPw
bQW
bSj
@@ -121754,12 +121717,12 @@ atk
aux
avF
dqT
-esV
-xqB
+smP
+dRu
aAx
aaa
aIe
-dZD
+den
dev
aav
aav
@@ -121772,13 +121735,13 @@ dev
dfz
aIe
aaa
-cWu
+aVh
dge
+xfO
azd
-sSU
-lMJ
-lMJ
-lHL
+azd
+dgB
+dgK
aaa
cUL
aaa
@@ -121798,7 +121761,7 @@ bHB
bIZ
bKG
bMl
-bKG
+dhj
bIZ
bKG
bMl
@@ -122011,10 +121974,10 @@ atl
auy
dnS
dqT
-fGs
-ddO
+osi
+bTq
aAx
-sOW
+jOg
def
aCZ
aav
@@ -122026,16 +121989,16 @@ aaa
aav
aav
aav
-xfK
-obN
-sOW
-cWu
-ddO
+iyK
+dew
+jOg
+aVh
+bTq
dgg
-sSU
-lMJ
-lHL
-lHL
+dgt
+dgk
+dgv
+dgJ
anT
aaf
aaf
@@ -122055,7 +122018,7 @@ bza
bJa
bza
bFX
-bza
+dhk
bJa
bza
bFX
@@ -122268,12 +122231,12 @@ apm
dnh
dnS
dqT
-xWZ
-dPf
+oHF
+ldf
aAx
aaa
aIe
-dZD
+den
aav
aav
aaa
@@ -122286,33 +122249,33 @@ aav
dfz
aIe
aaa
-cWu
+aVh
aWK
+tZu
+dgt
dgk
-sSU
-lMJ
-lHL
-lHL
-anT
-dew
-dew
-aaf
-dew
-bpw
-dew
-dew
-aaf
-aaf
-aaf
-aaf
+dgB
+dgM
+dgN
+dgO
+dgO
+dgw
+dgO
+dgS
+dgO
+dgO
+dgw
+dgw
+dgw
+dgw
bCz
-aaf
-bFY
-aaf
-bJb
-aaf
-bFY
-aaf
+dgw
+dha
+dgw
+dhc
+dgw
+dha
+dhl
bJb
aaf
bFY
@@ -122526,9 +122489,9 @@ auz
dqp
dqT
axY
-fGs
+osi
aAx
-vmz
+fMR
def
aCZ
aaa
@@ -122536,20 +122499,20 @@ aaa
aaa
ddZ
cDu
-fWO
+nXa
aaa
vLD
dev
-xfK
-obN
-vmz
-cWu
+iyK
+dew
+fMR
+aVh
dgg
axY
-sSU
-lMJ
-lHL
-lHL
+azd
+azd
+dgv
+aaf
anT
aaa
aaa
@@ -122783,29 +122746,29 @@ auA
dnS
dqT
axY
-fGs
-ddO
-sOW
+osi
+bTq
+jOg
aIe
-dZD
+den
lMJ
aaf
aaf
-den
-nte
+kRZ
+xNH
aMo
aaf
aaf
lMJ
dfz
aIe
-sOW
-ddO
+jOg
+bTq
dgg
axY
-sSU
-lMJ
-lHL
+dgt
+dgk
+dgB
aaa
anT
aaa
@@ -123040,30 +123003,30 @@ auB
avG
dqT
axY
-fGs
+osi
aAx
-vmz
+fMR
def
aCZ
dev
vLD
aaa
-fjy
+gNd
deY
-moI
+kLA
aaa
aaa
aaa
-xfK
-obN
-vmz
-cWu
+iyK
+dew
+fMR
+aVh
dgg
axY
-sSU
-lMJ
-lHL
-lHL
+dgk
+dgk
+dgv
+aaf
anT
aaa
aaa
@@ -123296,12 +123259,12 @@ dnh
dnh
jKK
dqT
-ocj
-rTo
+udi
+poQ
aAx
aaa
aIe
-dZD
+den
aav
aav
aaa
@@ -123314,12 +123277,12 @@ aav
dfz
aIe
aaa
-cWu
-jjF
+aVh
+gRU
+wca
+dgu
dgm
-sSU
-lMJ
-lHL
+dgB
aaa
anT
aaa
@@ -123553,11 +123516,11 @@ atn
bOY
avG
dqT
-fGs
-ddO
+osi
+bTq
aAx
-sOW
-dtL
+jOg
+fWY
aCZ
aav
aav
@@ -123568,16 +123531,16 @@ vLD
aaa
aav
aav
-xfK
-xLP
-sOW
-pWF
-ddO
+iyK
+jeJ
+jOg
+kYn
+bTq
dgg
-sSU
-lMJ
-lHL
-lHL
+dgv
+aye
+dgv
+aaf
anT
aaf
aaf
@@ -123810,12 +123773,12 @@ dnh
dnh
lNZ
dqT
-drT
-xqB
+ine
+dRu
aAx
aaa
-vmz
-dZD
+fMR
+den
dev
aav
aaa
@@ -123826,13 +123789,13 @@ aav
aav
dev
dfz
-vmz
+fMR
aaa
-cWu
+aVh
dge
-vSl
-sSU
-lMJ
+jWX
+aaa
+aaf
aaa
aaa
aaf
@@ -124069,27 +124032,27 @@ ack
dqT
axY
axY
-ddO
-hWU
-hWU
-gKb
-hWU
-hWU
-hWU
-hWU
-hWU
-hWU
-hWU
-hWU
-hWU
-yeY
-hWU
-hWU
-ddO
+bTq
+xbG
+xbG
+cZM
+xbG
+xbG
+xbG
+xbG
+xbG
+xbG
+xbG
+xbG
+xbG
+jAo
+xbG
+xbG
+bTq
axY
axY
-sSU
-lMJ
+aaa
+aaf
aaa
aaa
aaf
@@ -124345,8 +124308,8 @@ axY
axY
axY
axY
-sSU
-lMJ
+aaf
+aaf
aaa
aaa
aaa
@@ -124599,11 +124562,11 @@ axY
axY
axY
axY
-eln
-tMT
+wby
+vJj
aaa
-lHL
-lMJ
+aaf
+aaf
aaa
aaa
aaa
@@ -125094,26 +125057,26 @@ aaa
aaa
aaa
aaa
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
-vLD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaf
aai
aaa
diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm
index b6b157dafb..2119996ffa 100644
--- a/_maps/map_files/Mining/Lavaland.dmm
+++ b/_maps/map_files/Mining/Lavaland.dmm
@@ -144,9 +144,7 @@
/area/mine/laborcamp)
"aB" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/turf/open/floor/plasteel/white,
/area/mine/laborcamp)
@@ -457,8 +455,7 @@
dir = 4
},
/obj/machinery/door/airlock/security/glass{
- name = "Labor Camp Shuttle Prisoner Airlock";
- req_access_txt = "0"
+ name = "Labor Camp Shuttle Prisoner Airlock"
},
/turf/open/floor/plasteel,
/area/mine/laborcamp)
@@ -500,7 +497,6 @@
/area/mine/laborcamp)
"bC" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/computer/shuttle/mining{
@@ -757,8 +753,7 @@
/obj/machinery/door/airlock/external{
glass = 1;
name = "Mining Shuttle Airlock";
- opacity = 0;
- req_access_txt = "0"
+ opacity = 0
},
/turf/open/floor/plasteel,
/area/mine/production)
@@ -915,8 +910,7 @@
/area/mine/production)
"cJ" = (
/obj/machinery/door/airlock{
- name = "Closet";
- req_access_txt = "0"
+ name = "Closet"
},
/turf/open/floor/plating,
/area/mine/production)
@@ -1049,7 +1043,6 @@
"dc" = (
/obj/structure/closet/crate,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/effect/turf_decal/bot,
@@ -1112,7 +1105,6 @@
dir = 8
},
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/iv_drip,
@@ -1380,9 +1372,7 @@
/area/mine/living_quarters)
"dR" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
@@ -1467,7 +1457,6 @@
/area/mine/living_quarters)
"ee" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel,
@@ -1864,7 +1853,6 @@
/area/mine/living_quarters)
"fc" = (
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/plasteel/purple/corner{
@@ -1886,7 +1874,6 @@
/obj/structure/bed,
/obj/item/bedsheet/brown,
/obj/machinery/airalarm{
- frequency = 1439;
pixel_y = 23
},
/turf/open/floor/carpet,
@@ -1981,7 +1968,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet,
@@ -2127,7 +2113,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet,
@@ -2158,7 +2143,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/carpet,
@@ -3331,8 +3315,7 @@
dir = 8
},
/obj/machinery/door/airlock/security/glass{
- name = "Labor Camp Shuttle Prisoner Airlock";
- req_access_txt = "0"
+ name = "Labor Camp Shuttle Prisoner Airlock"
},
/turf/open/floor/plasteel,
/area/mine/laborcamp)
@@ -3355,8 +3338,7 @@
/obj/machinery/door/airlock/external{
glass = 1;
name = "Mining Shuttle Airlock";
- opacity = 0;
- req_access_txt = "0"
+ opacity = 0
},
/turf/open/floor/plasteel,
/area/mine/production)
diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm
index 89be043c5d..73a07a866d 100644
--- a/_maps/map_files/OmegaStation/OmegaStation.dmm
+++ b/_maps/map_files/OmegaStation/OmegaStation.dmm
@@ -521,6 +521,24 @@
dir = 1
},
/area/bridge)
+"abb" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom";
+ pixel_x = 28;
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Bar";
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/bar/atrium)
"abc" = (
/obj/structure/cable/white{
icon_state = "4-8"
@@ -871,6 +889,18 @@
dir = 4
},
/area/bridge)
+"abJ" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/bar/atrium)
"abK" = (
/obj/structure/window/reinforced{
dir = 8
@@ -1443,7 +1473,6 @@
},
/obj/machinery/door/airlock/command{
name = "Council Chambers";
- req_access = null;
req_access_txt = "19"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1545,7 +1574,6 @@
},
/obj/machinery/door/airlock/command{
name = "Council Chambers";
- req_access = null;
req_access_txt = "19"
},
/obj/effect/turf_decal/stripes/line{
@@ -1769,7 +1797,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -26;
- req_access_txt = "0";
use_power = 0
},
/obj/effect/landmark/start/captain,
@@ -1919,7 +1946,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Quarters";
- req_access = null;
req_access_txt = "57"
},
/obj/effect/turf_decal/stripes/line{
@@ -2074,7 +2100,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2120,7 +2145,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -2656,7 +2680,6 @@
},
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Office";
- req_access = null;
req_access_txt = "57"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2888,7 +2911,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Emergency Escape";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -3239,9 +3261,8 @@
pixel_y = 3
},
/obj/item/storage/secure/briefcase,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/light{
@@ -3385,7 +3406,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable/white{
@@ -4019,7 +4039,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/turf_decal/stripes/line{
@@ -4193,7 +4212,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5908,7 +5926,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
- req_access = null;
req_access_txt = "18"
},
/obj/effect/turf_decal/stripes/line{
@@ -6509,9 +6526,8 @@
},
/obj/item/storage/lockbox/loyalty,
/obj/structure/table/reinforced,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/camera{
@@ -7891,7 +7907,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/turf_decal/stripes/line{
@@ -7980,9 +7995,8 @@
/area/security/brig)
"apy" = (
/obj/machinery/vending/security,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/light{
@@ -9812,8 +9826,7 @@
"asU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10185,8 +10198,7 @@
"atO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
- name = "Primary Tool Storage";
- req_access_txt = "0"
+ name = "Primary Tool Storage"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -10432,22 +10444,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar/atrium)
-"auh" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks,
-/obj/item/device/radio/intercom{
- name = "Station Intercom";
- pixel_x = 28;
- pixel_y = 24
- },
-/obj/machinery/camera{
- c_tag = "Bar";
- dir = 8
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/bar/atrium)
"aui" = (
/obj/machinery/status_display,
/turf/closed/wall,
@@ -10955,16 +10951,6 @@
dir = 5
},
/area/crew_quarters/bar/atrium)
-"avm" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/crew_quarters/bar/atrium)
"avn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -14458,9 +14444,8 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"aCL" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -19085,7 +19070,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Telecomms Control Room";
- req_access = null;
req_access_txt = "19; 61"
},
/obj/structure/cable{
@@ -19659,9 +19643,8 @@
/obj/structure/cable/white{
icon_state = "1-2"
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/effect/turf_decal/stripes/line{
@@ -21014,7 +20997,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/obj/effect/turf_decal/stripes/line{
@@ -21861,7 +21843,6 @@
"aSM" = (
/obj/machinery/door/airlock/command{
name = "Telecomms Server Room";
- req_access = null;
req_access_txt = "61"
},
/obj/structure/cable{
@@ -22062,9 +22043,8 @@
pixel_y = 3
},
/obj/item/storage/box/bodybags,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/vault/side{
@@ -23644,7 +23624,6 @@
"aWN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
@@ -23718,7 +23697,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research and Development Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -24066,7 +24044,6 @@
"aXF" = (
/obj/machinery/door/airlock/command{
name = "Research Division Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable/white{
@@ -24657,8 +24634,7 @@
/obj/effect/turf_decal/delivery,
/obj/machinery/door/window/eastleft{
name = "First-Aid Supplies";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/open/floor/plasteel,
/area/medical/medbay/zone3)
@@ -25220,9 +25196,8 @@
"aZU" = (
/obj/machinery/recharge_station,
/obj/effect/landmark/start/cyborg,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/power/apc/highcap/ten_k{
@@ -26279,7 +26254,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -26;
- req_access_txt = "0";
use_power = 0
},
/obj/effect/turf_decal/bot,
@@ -27513,8 +27487,7 @@
"beB" = (
/obj/machinery/door/window{
dir = 8;
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/turf/open/floor/plasteel/bar,
/area/maintenance/port)
@@ -27770,9 +27743,8 @@
/area/maintenance/port)
"bfe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/blue/corner{
@@ -29650,8 +29622,7 @@
/obj/machinery/button/door{
id = "chapelprivacy";
name = "Chapel Privacy Shutters";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/turf/open/floor/plasteel/chapel,
/area/chapel/main)
@@ -30083,9 +30054,8 @@
},
/obj/item/storage/box/syringes,
/obj/item/extinguisher/mini,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/newscaster{
@@ -31714,8 +31684,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -31757,22 +31726,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"dqM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/crew_quarters/cryopod)
-"eJF" = (
-/obj/structure/cable/white{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/medical/cryo";
- dir = 2;
- name = "Cryogenics APC";
- pixel_y = -24
- },
-/turf/open/floor/plasteel/purple,
-/area/crew_quarters/cryopod)
"fWz" = (
/obj/machinery/door/airlock/external{
name = "External Docking Port";
@@ -31786,21 +31739,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"gHi" = (
-/obj/machinery/computer/cryopod{
- pixel_x = 25
- },
-/turf/open/floor/plasteel/purple,
-/area/crew_quarters/cryopod)
-"icS" = (
-/obj/machinery/cryopod,
-/turf/open/floor/plasteel/purple,
+"jFY" = (
+/turf/closed/wall,
/area/crew_quarters/cryopod)
"kKd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/turf_decal/stripes/line{
@@ -31830,6 +31775,18 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
+"nbP" = (
+/obj/structure/cable/white{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/cryopod";
+ dir = 2;
+ name = "Cryogenics APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/purple,
+/area/crew_quarters/cryopod)
"nKi" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -31852,6 +31809,10 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"oGK" = (
+/obj/machinery/cryopod,
+/turf/open/floor/plasteel/purple,
+/area/crew_quarters/cryopod)
"sws" = (
/obj/docking_port/stationary{
dheight = 1;
@@ -32675,8 +32636,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -33707,7 +33667,6 @@
"sNk" = (
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65"
},
/obj/effect/turf_decal/delivery,
@@ -33866,7 +33825,6 @@
"sNy" = (
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65"
},
/obj/effect/turf_decal/delivery,
@@ -34308,9 +34266,6 @@
"sPY" = (
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"usJ" = (
-/turf/closed/wall,
-/area/crew_quarters/cryopod)
"uxJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -34339,6 +34294,16 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
+"uyG" = (
+/obj/machinery/computer/cryopod{
+ pixel_x = 25
+ },
+/turf/open/floor/plasteel/purple,
+/area/crew_quarters/cryopod)
+"wgN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/cryopod)
"wUF" = (
/obj/machinery/door/airlock/atmos/glass{
name = "Supermatter Chamber";
@@ -77105,8 +77070,8 @@ ajx
akA
alt
amm
-eJF
-usJ
+nbP
+jFY
aoT
apZ
ara
@@ -77363,7 +77328,7 @@ akB
alk
amm
amm
-dqM
+wgN
aoU
aqa
arg
@@ -77618,16 +77583,16 @@ aiC
ajz
akC
alk
-icS
-gHi
-dqM
+oGK
+uyG
+wgN
aoV
aqb
arh
asl
atm
-auh
-avm
+abb
+abJ
awr
awZ
axT
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index 5743767070..8608c08c9e 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -2,12 +2,6 @@
"aaa" = (
/turf/open/space/basic,
/area/space)
-"aau" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
"aby" = (
/obj/structure/lattice,
/obj/structure/grille,
@@ -1481,6 +1475,9 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
"afC" = (
+/obj/machinery/light{
+ dir = 8
+ },
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
@@ -1735,8 +1732,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
@@ -1764,7 +1760,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65"
},
/turf/open/floor/plating,
@@ -1834,8 +1829,7 @@
/area/security/prison)
"agC" = (
/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
+ name = "Unisex Restroom"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
@@ -1911,7 +1905,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -1956,7 +1949,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -1989,7 +1981,6 @@
},
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
- req_access = null;
req_access_txt = "65"
},
/turf/open/floor/plating,
@@ -2513,11 +2504,8 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
- aiControlDisabled = 0;
- id_tag = null;
- locked = 0;
+ aiControlDisabled = 1;
name = "Prisoner Transfer Centre";
- req_access = null;
req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -2818,7 +2806,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Equipment Room";
- req_access = null;
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -2829,7 +2816,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Equipment Room";
- req_access = null;
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -3185,14 +3171,9 @@
/area/security/processing/cremation)
"ajI" = (
/obj/machinery/door/airlock/security{
- aiControlDisabled = 0;
- icon_state = "closed";
- id_tag = null;
- locked = 0;
+ aiControlDisabled = 1;
name = "Crematorium";
- req_access = null;
- req_access_txt = "2;27";
- req_one_access_txt = "0"
+ req_access_txt = "2;27"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -3562,7 +3543,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plating,
@@ -3989,8 +3969,7 @@
base_state = "left";
dir = 4;
icon_state = "left";
- name = "Brig Infirmary";
- req_access_txt = "0"
+ name = "Brig Infirmary"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
@@ -4232,8 +4211,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Brig Infirmary";
- req_access_txt = "0"
+ name = "Brig Infirmary"
},
/obj/structure/cable{
icon_state = "4-8"
@@ -4544,7 +4522,6 @@
"amI" = (
/obj/machinery/door/airlock/maintenance{
name = "Crematorium Maintenance";
- req_access_txt = "0";
req_one_access_txt = "2;27"
},
/obj/structure/cable{
@@ -4863,8 +4840,7 @@
"anx" = (
/obj/machinery/door/airlock/maintenance{
name = "Brig Infirmary Maintenance";
- req_access_txt = "63";
- req_one_access_txt = "0"
+ req_access_txt = "63"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -5456,8 +5432,7 @@
id = "Secure Gate";
name = "Entrance Lockdown";
pixel_x = 5;
- pixel_y = -2;
- req_access_txt = "0"
+ pixel_y = -2
},
/obj/machinery/button/door{
id = "Prison Gate";
@@ -5577,7 +5552,6 @@
},
/obj/machinery/door/airlock/security{
name = "Security Access";
- req_access = null;
req_access_txt = "1"
},
/turf/open/floor/plating,
@@ -5855,7 +5829,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Security Office";
- req_access = null;
req_access_txt = "1"
},
/obj/structure/disposalpipe/segment,
@@ -6100,9 +6073,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/red/side{
@@ -6444,7 +6415,6 @@
"aru" = (
/obj/machinery/door/airlock/security{
name = "Interrogation";
- req_access = null;
req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -7447,7 +7417,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
- req_access = null;
req_access_txt = "20"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -7546,7 +7515,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Bridge External Access";
- req_access = null;
req_access_txt = "10;13"
},
/turf/open/floor/plating,
@@ -7960,8 +7928,6 @@
"ava" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
- lockdownbyai = 0;
- locked = 0;
name = "Gateway Access";
req_access_txt = "62"
},
@@ -7998,8 +7964,7 @@
/obj/machinery/button/door{
id = "Dorm3Shutters";
name = "Privacy Shutters Control";
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
@@ -8024,7 +7989,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -8277,7 +8241,6 @@
"avM" = (
/obj/machinery/door/airlock/command{
name = "Balcony";
- req_access = null;
req_access_txt = "20"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -8404,7 +8367,6 @@
},
/obj/machinery/door/airlock/external{
name = "Bridge External Access";
- req_access = null;
req_access_txt = "10;13"
},
/turf/open/floor/plating,
@@ -8676,8 +8638,7 @@
"awH" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "0"
+ name = "Labor Camp Shuttle Airlock"
},
/turf/open/floor/plasteel/dark,
/area/security/brig)
@@ -8828,8 +8789,7 @@
/area/crew_quarters/heads/captain)
"awS" = (
/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
+ name = "Private Restroom"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
@@ -8841,7 +8801,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
name = "Captain's Office Access";
- req_access = null;
req_access_txt = "20"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -9251,7 +9210,6 @@
"aye" = (
/obj/machinery/door/airlock/command{
name = "External Access";
- req_access_txt = "0";
req_one_access_txt = "19; 65"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9299,8 +9257,7 @@
/obj/machinery/button/door{
id = "Dorm2Shutters";
name = "Privacy Shutters Control";
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
@@ -9325,7 +9282,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -9571,7 +9527,6 @@
"ayW" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9952,7 +9907,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -9972,7 +9926,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -10261,7 +10214,6 @@
"aAC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
- locked = 0;
name = "AI Upload Access";
req_access_txt = "16"
},
@@ -10444,7 +10396,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/security{
name = "Detective's Office";
- req_access = null;
req_access_txt = "4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -10719,8 +10670,7 @@
/obj/machinery/button/door{
id = "Dorm1Shutters";
name = "Privacy Shutters Control";
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/dorms)
@@ -10745,7 +10695,6 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -10973,6 +10922,7 @@
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
+/obj/item/twohanded/required/kirbyplants/random,
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
@@ -11040,12 +10990,25 @@
},
/area/storage/primary)
"aCx" = (
-/obj/machinery/vending/tool,
/obj/structure/sign/poster/official/obey{
pixel_y = 32
},
+/obj/machinery/disposal/deliveryChute{
+ name = "Crate Disposal Chute"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/southright{
+ name = "Crate Disposal Chute"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/neutral/side{
- dir = 5
+ dir = 1
},
/area/storage/primary)
"aCy" = (
@@ -11251,7 +11214,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/cable{
@@ -11573,7 +11535,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
req_access_txt = "20"
},
/obj/structure/cable{
@@ -11672,7 +11633,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
req_access_txt = "57"
},
/obj/structure/cable{
@@ -11799,8 +11759,7 @@
"aEc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
+ name = "Dormitories"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
@@ -11810,8 +11769,7 @@
/area/crew_quarters/toilet/restrooms)
"aEe" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
@@ -11936,6 +11894,10 @@
/obj/machinery/light{
dir = 8
},
+/obj/machinery/light_switch{
+ dir = 9;
+ pixel_x = -22
+ },
/turf/open/floor/plasteel/neutral/side{
dir = 8;
heat_capacity = 1e+006
@@ -12224,6 +12186,11 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
+"aEY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
"aEZ" = (
/obj/structure/sink{
dir = 8;
@@ -12422,8 +12389,7 @@
/obj/machinery/door/window/northleft{
dir = 2;
icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/machinery/door/poddoor/preopen{
id = "hop";
@@ -12499,8 +12465,7 @@
/area/crew_quarters/toilet/restrooms)
"aFK" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/structure/cable{
icon_state = "4-8"
@@ -12679,13 +12644,12 @@
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
"aGj" = (
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
- },
+/obj/structure/disposalpipe/junction/flip,
+/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
"aGk" = (
/obj/machinery/vending/boozeomat{
+ products = list(/obj/item/reagent_containers/food/drinks/bottle/rum = 1, /obj/item/reagent_containers/food/drinks/bottle/wine = 1, /obj/item/reagent_containers/food/drinks/ale = 1, /obj/item/reagent_containers/food/drinks/drinkingglass = 6, /obj/item/reagent_containers/food/drinks/ice = 1, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass = 4);
req_access_txt = "20"
},
/turf/open/floor/plasteel/vault{
@@ -12926,11 +12890,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"aGX" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -12947,22 +12906,10 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"aGZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Primary Tool Storage"
- },
+/obj/effect/spawner/structure/window,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/storage/primary)
-"aHa" = (
-/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- pixel_y = 3
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/hallway/primary/central)
"aHb" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/vault{
@@ -13090,8 +13037,7 @@
/area/hallway/primary/central)
"aHn" = (
/obj/machinery/door/airlock/abandoned{
- name = "Starboard Emergency Storage";
- req_access_txt = "0"
+ name = "Starboard Emergency Storage"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -13235,9 +13181,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/neutral/corner{
@@ -13263,6 +13207,9 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
@@ -13280,12 +13227,12 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHO" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHP" = (
@@ -13402,9 +13349,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/blue/corner{
@@ -13920,8 +13865,7 @@
/area/hallway/primary/central)
"aJn" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable{
icon_state = "4-8"
@@ -14485,8 +14429,7 @@
"aKR" = (
/obj/machinery/door/airlock{
id_tag = "Potty1";
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable{
icon_state = "1-2"
@@ -14737,7 +14680,6 @@
normaldoorcontrol = 1;
pixel_x = 25;
pixel_y = 4;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -17455,7 +17397,6 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/mining/glass{
name = "Mailroom";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/door/firedoor,
@@ -18301,8 +18242,7 @@
"aUg" = (
/obj/machinery/door/airlock/maintenance{
name = "Bar Maintenance";
- req_access_txt = "25";
- req_one_access_txt = "0"
+ req_access_txt = "25"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
@@ -18361,7 +18301,6 @@
"aUo" = (
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "31;48"
},
/obj/structure/disposalpipe/segment{
@@ -19921,7 +19860,6 @@
"aYd" = (
/obj/machinery/door/airlock{
name = "Kitchen";
- req_access_txt = "0";
req_one_access_txt = "25; 28"
},
/obj/structure/disposalpipe/segment,
@@ -20255,9 +20193,7 @@
/area/hydroponics)
"aYR" = (
/obj/machinery/vending/dinnerware,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/cafeteria,
@@ -20653,7 +20589,6 @@
"aZK" = (
/obj/machinery/door/airlock/security{
name = "Security Checkpoint";
- req_access = null;
req_access_txt = "1"
},
/obj/structure/cable{
@@ -21847,7 +21782,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -21867,7 +21801,6 @@
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
req_access_txt = "10; 13"
},
/turf/open/floor/plating,
@@ -22954,7 +22887,6 @@
"bfI" = (
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -23963,8 +23895,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -24440,8 +24371,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/turf/open/floor/plasteel/freezer,
/area/storage/emergency/port)
@@ -24466,9 +24396,7 @@
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay/zone3)
"bjS" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/dark,
@@ -24714,8 +24642,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/turf/open/floor/plasteel,
/area/science/robotics/lab)
@@ -25381,7 +25308,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Genetics Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;45;5;9"
},
/turf/open/floor/plating,
@@ -25850,9 +25776,7 @@
"bnw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Cloning";
- req_access_txt = "0";
req_one_access_txt = "5;9"
},
/obj/structure/cable{
@@ -26612,6 +26536,12 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"bpp" = (
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
"bpq" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -27404,7 +27334,6 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "GeneticsDoor";
name = "Cloning";
- req_access_txt = "0";
req_one_access_txt = "5;9"
},
/obj/structure/cable{
@@ -27621,9 +27550,8 @@
/area/science/lab)
"brv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/purple/side{
@@ -27988,7 +27916,6 @@
/area/science/xenobiology)
"bsf" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12; 55"
},
/obj/structure/cable{
@@ -28043,9 +27970,8 @@
c_tag = "Genetics Cloning";
dir = 4
},
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/turf/open/floor/plasteel/blue,
@@ -28387,7 +28313,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Server Room";
- req_access = null;
req_access_txt = "30"
},
/obj/structure/cable{
@@ -28634,9 +28559,7 @@
dir = 4
},
/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ name = "Port Docking Bay 2"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -28645,9 +28568,7 @@
dir = 8
},
/obj/machinery/door/airlock/external{
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ name = "Port Docking Bay 2"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
@@ -28951,8 +28872,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/research{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/effect/turf_decal/delivery,
/obj/machinery/door/firedoor,
@@ -29202,9 +29122,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
/obj/structure/cable{
icon_state = "1-8"
},
@@ -29212,6 +29129,9 @@
dir = 4
},
/obj/effect/landmark/blobstart,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
/turf/open/floor/plasteel/floorgrime,
/area/science/xenobiology)
"buV" = (
@@ -29347,7 +29267,6 @@
/area/medical/medbay/central)
"bvq" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
@@ -29818,6 +29737,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/floorgrime,
/area/science/xenobiology)
"bwm" = (
@@ -30227,7 +30147,6 @@
},
/obj/machinery/door/airlock/research{
name = "R&D Lab";
- req_access_txt = "0";
req_one_access_txt = "7;29;30"
},
/obj/effect/turf_decal/delivery,
@@ -30491,8 +30410,7 @@
idDoor = "xeno_airlock_exterior";
idSelf = "xeno_airlock_control";
name = "Access Button";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -30532,8 +30450,7 @@
idDoor = "xeno_airlock_interior";
idSelf = "xeno_airlock_control";
name = "Access Button";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -30724,7 +30641,6 @@
/area/science/xenobiology)
"bxW" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12; 55"
},
/obj/structure/cable{
@@ -30734,6 +30650,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bxX" = (
@@ -30888,7 +30805,6 @@
/area/medical/sleeper)
"byp" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Sleepers";
req_access_txt = "5"
},
@@ -30900,7 +30816,6 @@
/area/medical/sleeper)
"byq" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Sleepers";
req_access_txt = "5"
},
@@ -31494,6 +31409,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bzx" = (
@@ -31503,6 +31421,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bzy" = (
@@ -31896,8 +31817,7 @@
},
/obj/machinery/door/airlock/research{
name = "Research Director's Office";
- req_access_txt = "30";
- req_one_access_txt = "0"
+ req_access_txt = "30"
},
/turf/open/floor/plasteel/darkpurple/side{
dir = 1
@@ -33241,9 +33161,8 @@
},
/area/hallway/primary/aft)
"bDB" = (
-/obj/machinery/airalarm{
+/obj/machinery/airalarm/unlocked{
dir = 4;
- locked = 0;
pixel_x = -23
},
/obj/machinery/computer/rdconsole{
@@ -33466,8 +33385,8 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
@@ -33508,22 +33427,17 @@
dir = 5
},
/area/science/mixing)
-"bEe" = (
-/turf/closed/wall,
-/area/science/mineral_storeroom)
"bEf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
-/area/science/mineral_storeroom)
-"bEg" = (
-/turf/closed/wall/r_wall,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bEh" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/item/trash/sosjerky,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bEj" = (
@@ -33793,7 +33707,8 @@
dir = 1
},
/obj/machinery/vending/wallmed{
- pixel_y = 28
+ pixel_y = 28;
+ products = list(/obj/item/reagent_containers/syringe = 3, /obj/item/reagent_containers/pill/patch/styptic = 1, /obj/item/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/reagent_containers/medspray/sterilizine = 1)
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/landmark/blobstart,
@@ -33811,7 +33726,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = 26;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -34090,6 +34004,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bFn" = (
@@ -34136,14 +34051,22 @@
},
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bFs" = (
/obj/structure/cable{
icon_state = "4-8"
},
/obj/structure/closet/firecloset,
+/obj/machinery/camera{
+ c_tag = "Toxins Launch Area";
+ dir = 2;
+ network = list("ss13","rd")
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bFt" = (
/obj/machinery/suit_storage_unit/rd,
/obj/structure/cable{
@@ -34152,46 +34075,44 @@
/obj/machinery/light{
dir = 1
},
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bFu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bFu" = (
-/obj/structure/ore_box,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bFv" = (
-/obj/structure/ore_box,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/camera{
- c_tag = "Toxins Launch Area";
- dir = 2;
- network = list("ss13","rd")
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall,
+/area/science/mixing)
"bFw" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/sign/warning/deathsposal{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/purple/corner,
+/area/science/circuit)
"bFx" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -34202,21 +34123,23 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bFy" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ dir = 2;
+ name = "Science Requests Console";
+ pixel_y = 30;
+ receive_ore_updates = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bFz" = (
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
+"bFy" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Toxins Launch Room APC";
+ name = "Circuitry Lab APC";
pixel_y = 25
},
/obj/structure/cable{
@@ -34225,34 +34148,58 @@
/obj/structure/cable{
icon_state = "0-8"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
+"bFz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bFA" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Toxins Launch Room Maintenance";
- req_access_txt = "8"
+/obj/structure/cable{
+ icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
+"bFA" = (
/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
+/obj/machinery/door/airlock/research{
+ name = "Circuitry Storeroom";
+ req_access_txt = "47"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
"bFB" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/item/cigbutt/cigarbutt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
"bFC" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -34263,8 +34210,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/department/cargo)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
"bFD" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -34272,7 +34222,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/landmark/xeno_spawn,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "47"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bFE" = (
@@ -34390,7 +34348,6 @@
/area/medical/medbay/central)
"bFR" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -34628,6 +34585,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side,
/area/science/mixing)
"bGt" = (
@@ -34673,28 +34631,36 @@
dir = 10
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bGy" = (
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bGz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bGA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bGB" = (
-/obj/effect/turf_decal/loading_area{
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bGC" = (
-/obj/effect/turf_decal/delivery,
+/area/science/mixing)
+"bGz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
+"bGA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"bGB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"bGC" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/science/circuit)
"bGD" = (
/obj/structure/window/reinforced{
dir = 4
@@ -34846,7 +34812,6 @@
dir = 4
},
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Medbay Storage";
req_access_txt = "5"
},
@@ -35092,7 +35057,6 @@
id = "toxvent";
name = "Aft Vent Control";
pixel_y = -24;
- req_access_txt = "0";
req_one_access_txt = "8;24"
},
/obj/effect/turf_decal/stripes/line{
@@ -35109,14 +35073,16 @@
pixel_x = -6;
pixel_y = -24
},
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "tox_airlock_exterior";
- idInterior = "tox_airlock_interior";
- idSelf = "tox_access_control";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Mixing Chamber Access Console";
+ airpump_tag = "tox_airlock_pump";
+ exterior_door_tag = "tox_airlock_exterior";
+ id_tag = "tox_airlock_control";
+ interior_door_tag = "tox_airlock_interior";
pixel_x = 6;
pixel_y = -26;
- req_access_txt = "0"
+ sanitize_external = 1;
+ sensor_tag = "tox_airlock_sensor"
},
/obj/structure/extinguisher_cabinet{
pixel_x = 24
@@ -35131,58 +35097,45 @@
"bHB" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
- name = "Incinerator Output Pump";
- on = 0
+ name = "Incinerator Output Pump"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -20
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bHC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bHD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bHE" = (
/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bHF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bHG" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 28
- },
-/turf/open/floor/plasteel/brown{
+/turf/open/floor/plasteel/purple/corner{
dir = 4
},
-/area/science/mineral_storeroom)
-"bHH" = (
-/obj/machinery/mineral/unloading_machine{
- dir = 1;
- icon_state = "unloader-corner";
- input_dir = 1;
- output_dir = 2
+/area/science/circuit)
+"bHG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
"bHI" = (
/obj/structure/grille/broken,
/turf/open/space/basic,
@@ -35453,7 +35406,8 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/vending/wallmed{
- pixel_y = 28
+ pixel_y = 28;
+ products = list(/obj/item/reagent_containers/syringe = 3, /obj/item/reagent_containers/pill/patch/styptic = 1, /obj/item/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/reagent_containers/medspray/sterilizine = 1)
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
@@ -35630,8 +35584,7 @@
heat_proof = 1;
id_tag = "tox_airlock_interior";
name = "Interior Airlock";
- req_access_txt = "8";
- req_one_access_txt = "0"
+ req_access_txt = "8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/engine,
@@ -35642,8 +35595,12 @@
/area/science/mixing)
"bIN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bIO" = (
/obj/structure/window/reinforced,
/obj/machinery/doppler_array/research/science{
@@ -35655,34 +35612,35 @@
/turf/open/floor/plasteel{
dir = 2
},
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bIP" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "toxmineral";
- name = "smelting conveyor"
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bIQ" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bIR" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "toxmineral"
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"bIS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
},
/obj/effect/turf_decal/stripes/line{
- dir = 8
+ dir = 10
},
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
-"bIS" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bIT" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -35846,9 +35804,7 @@
/area/medical/medbay/central)
"bJq" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Room";
- req_access_txt = "0"
+ name = "Recovery Room"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -36069,43 +36025,41 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bJQ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- on = 1;
- target_pressure = 101.325
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "tox_airlock_exterior";
- idSelf = "tox_access_control";
- layer = 3.1;
- name = "airlock control";
- pixel_x = 8;
- pixel_y = -24
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 2
},
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/airlock_sensor{
+ id_tag = "tox_airlock_sensor";
+ master_tag = "tox_airlock_control";
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/science/mixing)
"bJR" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 4;
+ frequency = 1449;
+ id = "tox_airlock_pump"
+ },
/turf/open/floor/engine,
/area/science/mixing)
"bJS" = (
/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- on = 0;
- target_pressure = 101.325
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "tox_airlock_interior";
- idSelf = "tox_access_control";
- name = "airlock control";
- pixel_x = -8;
- pixel_y = 24
+ dir = 1
},
/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/science/mixing)
"bJT" = (
@@ -36118,7 +36072,7 @@
pixel_y = -32
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bJU" = (
/obj/machinery/button/massdriver{
dir = 2;
@@ -36129,7 +36083,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bJV" = (
/obj/machinery/mass_driver{
id = "toxinsdriver"
@@ -36146,29 +36100,28 @@
dir = 1
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bJW" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
},
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bJX" = (
-/obj/machinery/mineral/processing_unit_console,
-/turf/closed/wall,
-/area/science/mineral_storeroom)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bJY" = (
-/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/effect/turf_decal/stripes/line{
- dir = 9
+ dir = 4
},
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bJZ" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -36330,7 +36283,8 @@
/area/medical/medbay/central)
"bKw" = (
/obj/machinery/vending/wallmed{
- pixel_y = 28
+ pixel_y = 28;
+ products = list(/obj/item/reagent_containers/syringe = 3, /obj/item/reagent_containers/pill/patch/styptic = 1, /obj/item/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/reagent_containers/medspray/sterilizine = 1)
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
@@ -36457,14 +36411,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/hallway/primary/aft)
-"bKN" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "prison release";
- name = "prisoner processing blast door"
- },
-/turf/open/floor/plasteel/dark,
-/area/security/brig)
"bKO" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/door/poddoor/preopen{
@@ -36639,8 +36585,7 @@
heat_proof = 1;
id_tag = "tox_airlock_exterior";
name = "Exterior Airlock";
- req_access_txt = "8";
- req_one_access_txt = "0"
+ req_access_txt = "8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -36651,11 +36596,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
- req_access_txt = "8";
- req_one_access_txt = "0"
+ req_access_txt = "8"
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bLh" = (
/obj/structure/window/reinforced{
dir = 8;
@@ -36671,49 +36615,38 @@
dir = 8
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bLi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/turf/closed/wall,
-/area/science/mineral_storeroom)
+/turf/closed/wall/r_wall,
+/area/science/mixing)
"bLj" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/obj/item/storage/bag/ore,
-/obj/item/storage/bag/ore,
-/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
-"bLk" = (
-/obj/effect/turf_decal/loading_area{
+/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
-/area/science/mineral_storeroom)
+/area/science/circuit)
+"bLk" = (
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor5"
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bLl" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "toxmineral"
- },
-/obj/structure/plasticflaps,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bLm" = (
-/obj/machinery/conveyor{
- dir = 10;
- id = "toxmineral"
- },
-/obj/machinery/light/small,
-/obj/effect/turf_decal/stripes/corner{
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/turf/open/floor/plasteel,
+/area/science/circuit)
"bLn" = (
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
@@ -37136,14 +37069,14 @@
pixel_x = -32
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bMp" = (
/obj/structure/closet/emcloset/anchored,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bMq" = (
/obj/machinery/door/poddoor{
id = "toxinsdriver";
@@ -37154,7 +37087,7 @@
},
/obj/structure/fans/tiny,
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bMr" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -37522,7 +37455,7 @@
"bNq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bNr" = (
/obj/structure/window/reinforced{
dir = 4
@@ -37933,11 +37866,10 @@
dir = 1
},
/obj/machinery/door/airlock/external{
- req_access_txt = "8";
- req_one_access_txt = "0"
+ req_access_txt = "8"
},
/turf/open/floor/plating,
-/area/science/mineral_storeroom)
+/area/science/mixing)
"bOv" = (
/obj/structure/window/reinforced{
dir = 4
@@ -40024,11 +39956,11 @@
pixel_y = 4
},
/obj/item/device/multitool,
-/obj/item/clothing/glasses/meson,
/obj/machinery/requests_console{
department = "Tech storage";
pixel_y = -32
},
+/obj/item/clothing/glasses/meson/engine,
/turf/open/floor/plasteel/darkgreen,
/area/storage/tech)
"bTB" = (
@@ -40819,10 +40751,7 @@
/area/space/nearstation)
"bVq" = (
/obj/machinery/door/airlock/external{
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Construction Zone"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -41251,9 +41180,7 @@
},
/area/maintenance/department/engine)
"bWn" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
+/obj/structure/closet/secure_closet/engineering_chief,
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
@@ -41833,6 +41760,9 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ dir = 6
+ },
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bXI" = (
@@ -41977,8 +41907,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Power Storage";
- req_access_txt = "11";
- req_one_access_txt = "0"
+ req_access_txt = "11"
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -42071,11 +42000,6 @@
"bYw" = (
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
-"bYx" = (
-/obj/machinery/atmospherics/pipe/simple/purple/visible,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"bYz" = (
/obj/machinery/door/morgue{
name = "Confession Booth"
@@ -42094,10 +42018,7 @@
/area/chapel/main/monastery)
"bYF" = (
/obj/machinery/door/airlock/external{
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ name = "Construction Zone"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -42460,14 +42381,16 @@
name = "Incinerator APC";
pixel_x = -24
},
-/obj/structure/cable{
- icon_state = "0-4"
- },
/obj/machinery/airalarm{
dir = 2;
pixel_y = 22
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
/turf/open/floor/plasteel/darkyellow/side{
icon_state = "darkyellow";
dir = 8
@@ -42486,6 +42409,9 @@
/obj/structure/cable/yellow{
icon_state = "0-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"bZh" = (
@@ -42493,20 +42419,24 @@
/obj/structure/cable{
icon_state = "0-8"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/darkyellow/side{
dir = 4
},
/area/maintenance/disposal/incinerator)
"bZi" = (
-/obj/machinery/atmospherics/pipe/simple/purple/visible{
- dir = 6
- },
/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"bZj" = (
-/obj/machinery/atmospherics/pipe/simple/purple/visible{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
},
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
@@ -42704,10 +42634,10 @@
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bZO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/darkyellow/side{
icon_state = "darkyellow";
dir = 8
@@ -42729,7 +42659,6 @@
name = "Outtake Vent Control";
pixel_x = 24;
pixel_y = 6;
- req_access_txt = "0";
req_one_access_txt = "8;24"
},
/obj/machinery/button/door{
@@ -42737,7 +42666,6 @@
name = "Intake Vent Control";
pixel_x = 24;
pixel_y = -6;
- req_access_txt = "0";
req_one_access_txt = "8;24"
},
/turf/open/floor/plasteel/darkyellow/side{
@@ -42751,29 +42679,13 @@
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"bZS" = (
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
- name = "Incinerator airlock control";
- pixel_x = -24;
- pixel_y = -8
- },
/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- on = 0;
- target_pressure = 101.325
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- layer = 3.1;
- name = "Incinerator airlock control";
- pixel_x = 24;
- pixel_y = -8
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"bZT" = (
@@ -43068,13 +42980,18 @@
/obj/structure/cable/yellow{
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"caK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/open/floor/plasteel/darkyellow/side{
dir = 4
},
@@ -43090,8 +43007,7 @@
heat_proof = 1;
id_tag = "incinerator_airlock_interior";
name = "Turbine Interior Airlock";
- req_access_txt = "24";
- req_one_access_txt = "0"
+ req_access_txt = "24"
},
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
@@ -43099,6 +43015,11 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 2;
+ frequency = 1449;
+ id = "incinerator_airlock_pump"
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"caN" = (
@@ -43112,8 +43033,7 @@
heat_proof = 1;
id_tag = "incinerator_airlock_exterior";
name = "Turbine Exterior Airlock";
- req_access_txt = "24";
- req_one_access_txt = "0"
+ req_access_txt = "24"
},
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
@@ -43398,17 +43318,20 @@
name = "Incinerator to Output";
on = 0
},
+/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"cbC" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idInterior = "incinerator_airlock_interior";
- idSelf = "incinerator_access_control";
+/obj/machinery/embedded_controller/radio/airlock_controller{
name = "Incinerator Access Console";
+ airpump_tag = "incinerator_airlock_pump";
+ exterior_door_tag = "incinerator_airlock_exterior";
+ id_tag = "incinerator_access_control";
+ interior_door_tag = "incinerator_airlock_interior";
pixel_x = 26;
pixel_y = 6;
- req_access_txt = "0"
+ sanitize_external = 1;
+ sensor_tag = "incinerator_airlock_sensor"
},
/obj/machinery/button/ignition{
id = "Incinerator";
@@ -43416,7 +43339,9 @@
pixel_y = -6
},
/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
/turf/open/floor/plasteel/darkyellow/side{
dir = 4
},
@@ -43429,11 +43354,16 @@
/area/maintenance/disposal/incinerator)
"cbE" = (
/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- on = 0;
- target_pressure = 101.325
+ dir = 8
},
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/machinery/airlock_sensor{
+ id_tag = "incinerator_airlock_sensor";
+ master_tag = "incinerator_airlock_control";
+ pixel_x = -26;
+ pixel_y = 8
+ },
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cbF" = (
@@ -43664,13 +43594,13 @@
/area/maintenance/disposal/incinerator)
"ccq" = (
/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"ccr" = (
-/obj/machinery/atmospherics/components/binary/pump{
+/obj/machinery/atmospherics/components/binary/pump/on{
dir = 2;
- name = "Incinerator Output Pump";
- on = 1
+ name = "Incinerator Output Pump"
},
/turf/open/floor/plasteel/darkyellow/side{
dir = 4
@@ -43849,10 +43779,13 @@
"cdh" = (
/obj/structure/table/glass,
/obj/item/storage/toolbox/emergency,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
/turf/open/floor/plasteel/darkyellow/side,
/area/maintenance/disposal/incinerator)
"cdi" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
/turf/open/floor/plasteel/darkyellow/side{
icon_state = "darkyellow";
dir = 6
@@ -43864,9 +43797,11 @@
},
/obj/machinery/door/airlock/external{
name = "Atmospherics External Access";
- req_access = null;
req_access_txt = "24"
},
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cdk" = (
@@ -43876,6 +43811,9 @@
/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cdl" = (
@@ -43884,7 +43822,6 @@
},
/obj/machinery/door/airlock/external{
name = "Atmospherics External Access";
- req_access = null;
req_access_txt = "24"
},
/turf/open/floor/plating,
@@ -44012,10 +43949,6 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cdM" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cdN" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
@@ -44028,93 +43961,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cdP" = (
-/obj/machinery/camera{
- c_tag = "Engineering Port Aft";
- dir = 1
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdQ" = (
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cdR" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cdS" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- req_access_txt = "11"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdT" = (
-/obj/machinery/particle_accelerator/control_box,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdU" = (
-/obj/structure/particle_accelerator/fuel_chamber,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdV" = (
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdW" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdX" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cdY" = (
-/obj/machinery/camera{
- c_tag = "Engineering Starboard Aft";
- dir = 1
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cdZ" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -44239,19 +44085,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ces" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
"cet" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "Singularity";
@@ -44299,18 +44132,6 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cez" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"ceA" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
@@ -44559,21 +44380,6 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cft" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
"cfu" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -44608,20 +44414,6 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cfz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"cfC" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/hydrofloor,
@@ -44868,7 +44660,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Engineering External Access";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plating,
@@ -44937,7 +44728,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
@@ -45155,7 +44945,6 @@
},
/obj/machinery/door/airlock/external{
name = "Engineering External Access";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plating,
@@ -45169,20 +44958,6 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"chx" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"chz" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"chA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -45405,7 +45180,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/grimy,
@@ -45440,16 +45214,6 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"cit" = (
-/obj/machinery/the_singularitygen/tesla,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ciu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
"civ" = (
/obj/machinery/light{
dir = 4
@@ -45938,8 +45702,7 @@
},
/obj/machinery/door/window/eastleft{
dir = 8;
- name = "Mass Driver";
- req_one_access_txt = "0"
+ name = "Mass Driver"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/dark,
@@ -46215,7 +45978,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Telecommunications External Access";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plating,
@@ -46242,7 +46004,6 @@
},
/obj/machinery/door/airlock/external{
name = "Telecommunications External Access";
- req_access = null;
req_access_txt = "61"
},
/turf/open/floor/plating,
@@ -47057,8 +46818,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Dormitories";
- req_access_txt = "0"
+ name = "Dormitories"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
@@ -47090,10 +46850,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"cov" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side,
-/area/storage/primary)
"cow" = (
/obj/structure/rack,
/obj/item/storage/toolbox/emergency,
@@ -47871,7 +47627,6 @@
/obj/machinery/door/airlock/centcom{
name = "Crematorium";
opacity = 1;
- req_access = null;
req_access_txt = "27"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -47920,9 +47675,7 @@
/turf/open/space/basic,
/area/space/nearstation)
"crS" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/dark,
@@ -48276,6 +48029,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/mineral/iron,
/area/chapel/main/monastery)
+"ctH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"ctJ" = (
/obj/machinery/camera{
c_tag = "Chapel Office";
@@ -48996,7 +48755,6 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Monastery Maintenance";
- req_access_txt = "0";
req_one_access_txt = "22;24;10;11;37"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -49378,18 +49136,6 @@
dir = 1
},
/area/library/lounge)
-"cyr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 29
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
"cyy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -49828,6 +49574,7 @@
/area/maintenance/department/engine)
"cBk" = (
/obj/machinery/vending/boozeomat{
+ products = list(/obj/item/reagent_containers/food/drinks/bottle/whiskey = 1, /obj/item/reagent_containers/food/drinks/bottle/absinthe = 1, /obj/item/reagent_containers/food/drinks/bottle/limejuice = 1, /obj/item/reagent_containers/food/drinks/bottle/cream = 1, /obj/item/reagent_containers/food/drinks/soda_cans/tonic = 1, /obj/item/reagent_containers/food/drinks/drinkingglass = 10, /obj/item/reagent_containers/food/drinks/ice = 3, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass = 6, /obj/item/reagent_containers/food/drinks/flask = 1);
req_access_txt = "0"
},
/turf/closed/wall,
@@ -49917,8 +49664,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
@@ -49935,8 +49681,7 @@
/obj/machinery/button/door{
id = "supplybridge";
name = "Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
@@ -49969,7 +49714,6 @@
"cBL" = (
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;45;5;9"
},
/turf/open/floor/plating,
@@ -49983,9 +49727,6 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
-"cBP" = (
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
"cBQ" = (
/obj/machinery/power/rad_collector,
/turf/open/floor/plating,
@@ -50112,45 +49853,78 @@
"cDa" = (
/turf/closed/wall,
/area/quartermaster/warehouse)
-"dTw" = (
+"cDQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cXz" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/carpet,
-/area/library)
-"ecV" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"eHp" = (
-/turf/closed/wall,
-/area/crew_quarters/cryopod)
-"eIE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/library/lounge)
-"eJt" = (
-/obj/machinery/computer/cryopod{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
-"fic" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
-"fki" = (
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dnD" = (
+/obj/structure/particle_accelerator/fuel_chamber,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dse" = (
/obj/structure/disposalpipe/segment{
dir = 6
},
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
-"frt" = (
+"dAF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"dMB" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"dMI" = (
+/obj/item/twohanded/required/kirbyplants/random,
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab";
+ dir = 1;
+ network = list("ss13","rd");
+ pixel_x = 10
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"dNt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/xeno_spawn,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/side,
+/area/science/circuit)
+"dWy" = (
+/obj/machinery/libraryscanner,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"eeQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50160,33 +49934,195 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"fyh" = (
+"ejp" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_circuit_printer,
+/obj/item/device/integrated_electronics/wirer,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"exW" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"eEK" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"eNh" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"faN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"fvG" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 6
+ },
+/area/science/circuit)
+"fwl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/sorting)
+"fwr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"fBm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/research{
+ name = "Circuitry Lab";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"fKj" = (
+/turf/closed/wall,
+/area/science/circuit)
+"fWv" = (
+/obj/structure/bookcase/random/religion,
+/turf/open/floor/plasteel/dark,
+/area/library/lounge)
+"gdb" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"gkR" = (
+/obj/item/twohanded/required/kirbyplants/random,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/storage/primary)
+"gtb" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/science/circuit)
+"gxK" = (
+/turf/closed/wall/r_wall,
+/area/science/circuit)
+"gAj" = (
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/circuit)
+"gMm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"htU" = (
+/obj/machinery/rnd/production/protolathe/department/science,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"hwZ" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"hFp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"hKA" = (
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/integrated_electronics/debugger,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"hTm" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"hXz" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Starboard Aft";
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ick" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/library)
+"ijF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/carpet,
/area/library)
-"fID" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/sorting)
-"gFV" = (
-/obj/machinery/computer/camera_advanced/xenobio{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/science/xenobiology)
-"izp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
"izB" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod"
@@ -50196,22 +50132,34 @@
},
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"iCc" = (
+"izF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/red,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"iIy" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"iKb" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/sorting)
-"iVb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"iXQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
"jgr" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
@@ -50223,24 +50171,91 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/dark,
/area/library)
-"jZg" = (
-/obj/machinery/cryopod,
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
-"kdc" = (
-/obj/machinery/cryopod,
-/obj/machinery/light/small/built{
+"jnx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/darkpurple,
-/area/crew_quarters/cryopod)
-"khx" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"jvi" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/crew_quarters/heads/hos)
+"jBh" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/metal/fifty,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"jFO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/stairs,
-/area/crew_quarters/cryopod)
+/turf/open/floor/carpet,
+/area/library/lounge)
+"jLW" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"jOJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"jXh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/library/lounge)
+"jXA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 8
+ },
+/area/science/circuit)
+"jYe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"khk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/science/mixing)
"kjK" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
@@ -50254,24 +50269,38 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"kqj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+"kmh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
},
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"kwI" = (
+/turf/open/floor/plasteel,
+/area/science/mixing)
+"kAz" = (
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"lju" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 8
+ },
+/area/science/circuit)
+"lpS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"krG" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/library)
-"let" = (
-/turf/closed/wall/r_wall,
-/area/space)
+/area/science/circuit)
"lqy" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
@@ -50281,71 +50310,143 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/dark,
/area/library/lounge)
-"lvl" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/cigbutt,
+"lAs" = (
+/turf/closed/wall,
+/area/quartermaster/sorting)
+"lJr" = (
+/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"mHo" = (
+/area/science/circuit)
+"lQn" = (
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"lQQ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridgespace";
+ name = "bridge external shutters"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/bridge)
+"lQR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"maH" = (
+/obj/machinery/particle_accelerator/control_box,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"mdL" = (
/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/science/lab)
+"mwH" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"mCe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = 27
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"mLe" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/plasteel/darkred/side{
- dir = 1
- },
-/area/crew_quarters/heads/hos)
-"nuB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/library/lounge)
-"nJY" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/sheet/metal/fifty,
/turf/open/floor/plating,
-/area/maintenance/department/cargo)
-"opC" = (
-/obj/machinery/light/small{
+/area/security/checkpoint/engineering)
+"mES" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "Library APC";
- pixel_x = 24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/dark,
-/area/library)
-"oJF" = (
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"mKc" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/plasteel/dark,
/area/library/lounge)
+"mPt" = (
+/obj/machinery/camera{
+ c_tag = "Circuitry Lab Storeroom";
+ dir = 1;
+ network = list("ss13","rd");
+ pixel_x = 10
+ },
+/obj/structure/rack,
+/obj/item/device/multitool,
+/obj/item/device/multitool,
+/obj/item/screwdriver,
+/obj/item/screwdriver,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"mRa" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"not" = (
+/obj/item/cigbutt,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"nwu" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/science/circuit)
+"onw" = (
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/science/circuit)
+"onX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Primary Tool Storage"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"oyF" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"oEG" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"oJT" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/red,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
"oPy" = (
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
- req_access = null;
req_access_txt = "48"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -50365,22 +50466,179 @@
"pps" = (
/turf/closed/wall,
/area/engine/break_room)
-"qWK" = (
-/obj/structure/cable{
- icon_state = "4-8"
+"ptq" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_electronics/analyzer,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"pvM" = (
+/obj/machinery/cryopod,
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"pWF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
},
+/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{
+ pixel_y = 32
+ },
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"pXc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/carpet,
+/area/library)
+"pZh" = (
+/obj/machinery/the_singularitygen/tesla,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"qnT" = (
+/obj/machinery/autolathe,
+/turf/open/floor/plasteel/purple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"qAM" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/department/cargo)
+"qDU" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = 20;
+ pixel_y = -6
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 8
+ },
+/area/science/circuit)
+"qKm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 10
+ },
+/area/science/circuit)
+"qOE" = (
+/turf/open/floor/plasteel/dark,
+/area/library/lounge)
+"qXC" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/stairs,
+/area/crew_quarters/cryopod)
+"qXH" = (
/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"rtE" = (
+/turf/open/floor/plasteel/purple/corner{
+ dir = 1
+ },
+/area/science/circuit)
+"rxQ" = (
+/obj/structure/target_stake,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"rxV" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 27
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"rBh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"rSz" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"sBA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"sCz" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/red,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"sEc" = (
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"sKf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/cable{
- icon_state = "1-8"
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"sHK" = (
-/obj/structure/bookcase/random/religion,
-/turf/open/floor/plasteel/dark,
-/area/library/lounge)
+"sQr" = (
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
"sQt" = (
/obj/machinery/door/airlock/external{
name = "Supply Dock Airlock";
@@ -50391,54 +50649,101 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"tap" = (
-/obj/machinery/power/apc{
- areastring = "/area/medical/cryo";
- dir = 1;
- name = "Cryogenics APC";
- pixel_y = 24
+"thA" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"tYg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "0-2"
+/turf/closed/wall/r_wall,
+/area/science/mixing)
+"tYI" = (
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"uek" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_electronics/analyzer,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"ukd" = (
+/obj/machinery/cryopod,
+/obj/machinery/light/small/built{
+ dir = 4
},
/turf/open/floor/plasteel/darkpurple,
/area/crew_quarters/cryopod)
-"tez" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/library/lounge)
-"tjW" = (
-/obj/machinery/light{
+"ulu" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/machinery/cryopod{
- tag = "icon-cryopod-open (EAST)";
- icon_state = "cryopod-open";
- dir = 4
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
},
-/turf/open/floor/plasteel/dark,
-/area/security/prison)
-"ufi" = (
-/turf/open/floor/plasteel/dark,
-/area/library/lounge)
-"urZ" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/area/storage/primary)
+"uoj" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/cell/super,
+/obj/item/stock_parts/cell/super,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the other eggheads from the comfort of the circuitry lab.";
+ dir = 2;
+ name = "RnD Monitor";
+ network = list("rd");
+ pixel_y = 32
},
-/turf/open/floor/plasteel/dark,
-/area/library)
-"uyt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "1-8"
+/area/science/circuit)
+"uov" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 24
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"vpU" = (
/turf/open/floor/plasteel/darkpurple,
/area/crew_quarters/cryopod)
+"uyY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"uSk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"vpz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the other eggheads from the comfort of the circuitry lab.";
+ dir = 2;
+ name = "RnD Monitor";
+ network = list("rd");
+ pixel_y = 32
+ },
+/obj/item/device/integrated_circuit_printer,
+/obj/item/device/integrated_electronics/debugger,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/science/circuit)
+"vrY" = (
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plating,
+/area/engine/engineering)
"vzz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -50449,6 +50754,33 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
+"vCf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"vJd" = (
+/obj/structure/table/reinforced,
+/obj/item/device/integrated_electronics/wirer,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"vMX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -20
+ },
+/turf/open/floor/plasteel,
+/area/science/circuit)
"vOw" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
@@ -50463,32 +50795,122 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/dark,
/area/library)
-"vTA" = (
+"vTL" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/storage/primary)
+"wxJ" = (
+/obj/effect/turf_decal/delivery,
/obj/machinery/door/poddoor/preopen{
- id = "bridgespace";
- name = "bridge external shutters"
+ id = "prison release";
+ name = "prisoner processing blast door"
},
-/turf/open/floor/plasteel/vault{
- dir = 8
+/turf/open/floor/plasteel/dark,
+/area/security/brig)
+"wBr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/area/bridge)
-"xzr" = (
-/turf/closed/wall,
-/area/quartermaster/sorting)
-"yhZ" = (
-/obj/structure/table,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/turf/open/floor/plasteel/whitepurple/side,
-/area/science/lab)
-"yia" = (
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"wBO" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/cryopod";
+ dir = 1;
+ name = "Crew Cryogenics APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/darkpurple,
+/area/crew_quarters/cryopod)
+"wDZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"wJP" = (
/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ dir = 9
+ },
+/turf/open/space,
+/area/space/nearstation)
+"wTO" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/science/circuit)
+"xfc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/science/circuit)
+"xhj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/library/lounge)
+"xja" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Library APC";
+ pixel_x = 24
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/dark,
+/area/library)
+"xjc" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/library)
+"xCL" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Port Aft";
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"xEG" = (
+/turf/closed/wall,
+/area/crew_quarters/cryopod)
+"xGQ" = (
+/obj/structure/closet/crate,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
+"xGZ" = (
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"yeS" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/blue,
+/turf/open/floor/plasteel/white,
+/area/science/circuit)
(1,1,1) = {"
aaa
@@ -68154,13 +68576,13 @@ cgG
cfn
ckE
ckT
-tez
-tez
+xhj
+xhj
cwK
-tez
-tez
+xhj
+xhj
cxn
-tez
+xhj
lqy
cxC
cxK
@@ -68412,12 +68834,12 @@ cvw
cvK
cwg
cjR
-nuB
+jFO
ckF
-nuB
+jFO
cxe
-nuB
-nuB
+jFO
+jFO
cxz
cxD
cxL
@@ -68425,8 +68847,8 @@ cxY
cym
cyA
vOw
-fyh
-dTw
+ijF
+pXc
ckm
ckm
ckm
@@ -68672,7 +69094,7 @@ cwr
clm
ckG
cwU
-eIE
+jXh
ckU
cwe
cwe
@@ -68683,7 +69105,7 @@ cxM
cyB
cjp
cyR
-urZ
+ick
ckH
ckH
ckH
@@ -68926,10 +69348,10 @@ cvy
cvL
cwe
cwe
-sHK
-ufi
+fWv
+qOE
ckV
-ufi
+qOE
cln
cwe
cfN
@@ -68940,7 +69362,7 @@ aaa
aaa
cjp
cyS
-urZ
+ick
cyZ
ckH
czo
@@ -69183,10 +69605,10 @@ cvc
cvM
cfm
cwe
-sHK
-ufi
-oJF
-ufi
+fWv
+qOE
+mKc
+qOE
cln
cwe
caS
@@ -69197,7 +69619,7 @@ aht
aht
cjp
cko
-urZ
+ick
ckH
ckH
clp
@@ -69454,7 +69876,7 @@ aaa
aaa
cjp
cyT
-urZ
+ick
cyZ
ckH
czp
@@ -69711,8 +70133,8 @@ aht
aht
cjp
cjp
-krG
-opC
+xjc
+xja
ckH
czq
czw
@@ -70083,7 +70505,7 @@ aem
aem
aeT
afn
-tjW
+aem
afZ
agn
agy
@@ -70618,7 +71040,7 @@ aok
aoO
apF
apE
-bKN
+wxJ
apE
bBW
ajM
@@ -73958,7 +74380,7 @@ anJ
amX
aoY
apN
-cyr
+sBA
arp
asB
atB
@@ -74745,7 +75167,7 @@ aDv
aBh
aBh
aGd
-aGW
+aEY
aHG
aIM
aJG
@@ -76544,7 +76966,7 @@ aDA
aDy
aDA
aGi
-aGX
+aBi
aHL
aIP
aJK
@@ -76796,11 +77218,11 @@ axO
ayT
aAq
aBj
-aCs
+vTL
aDA
aEv
aFu
-cov
+aFu
aGZ
aHM
aIQ
@@ -77054,12 +77476,12 @@ ayU
aAr
aBj
aCx
-aDB
-aEw
-aFv
+oyF
+oyF
+oyF
aGj
-aGX
-aHH
+onX
+qXH
aIO
aJI
aKP
@@ -77295,7 +77717,7 @@ akW
alK
amw
ani
-mLe
+jvi
aiR
aph
ajM
@@ -77310,13 +77732,13 @@ axQ
ayV
aAs
aBj
-aBj
-aBj
-aBj
-aBj
-aBj
-aBi
-aHN
+gkR
+aDB
+aEw
+aFv
+ulu
+aGX
+jYe
aIO
aJI
aKQ
@@ -77572,8 +77994,8 @@ awR
awR
awR
awR
-aHa
-aHN
+aAN
+jYe
aIO
aJM
aKQ
@@ -77830,7 +78252,7 @@ aEx
aFw
awR
aHb
-aHN
+jYe
aIQ
aJL
aKR
@@ -79187,7 +79609,7 @@ cah
cbd
cam
cam
-cdM
+hwZ
bXk
bXk
bXk
@@ -79205,7 +79627,7 @@ bXk
bXk
bXk
bXk
-let
+aaa
aaa
aaa
aaa
@@ -79462,7 +79884,7 @@ cjT
ckq
ckq
bXk
-let
+aaa
aaa
aaa
aaa
@@ -79702,9 +80124,9 @@ cbf
ccb
ccS
cdO
-ces
+hTm
ceX
-cft
+cXz
cfS
cfV
cgS
@@ -79719,7 +80141,7 @@ cgS
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -79902,7 +80324,7 @@ aRN
aWa
aRN
aRN
-mHo
+rxV
aYS
cpn
bch
@@ -79958,7 +80380,7 @@ cak
cbg
cca
cam
-cdP
+xCL
bXk
bTE
bXk
@@ -79976,7 +80398,7 @@ cgT
cfV
ckr
bXk
-let
+aaa
aaa
aaa
aaa
@@ -80215,7 +80637,7 @@ cal
cbh
cam
cam
-cdQ
+xGZ
cet
cCI
cfV
@@ -80233,7 +80655,7 @@ cfV
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -80472,25 +80894,25 @@ cam
cam
cam
cam
-cdQ
+xGZ
cet
cCI
cfV
cfV
cgv
cfV
-chx
+eEK
cfV
-chx
+eEK
cfV
-chx
+eEK
cfV
-chx
+eEK
cfV
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -80729,7 +81151,7 @@ can
cbi
ccc
ccV
-cdR
+rSz
cet
cCI
cfV
@@ -80747,7 +81169,7 @@ cgV
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -80995,7 +81417,7 @@ cgv
bBW
bBW
bBW
-yia
+mwH
abI
aaa
bBW
@@ -81004,7 +81426,7 @@ bBW
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -81243,7 +81665,7 @@ cap
bXk
ccd
ccX
-cdS
+eNh
ceu
cfb
cfu
@@ -81261,7 +81683,7 @@ bBW
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -81500,7 +81922,7 @@ caq
cbk
cce
ccY
-cdT
+maH
cev
cfc
cfv
@@ -81513,12 +81935,12 @@ cii
cis
ciG
aaa
-yia
+mwH
cgV
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -81723,7 +82145,7 @@ brl
bsL
bul
bwU
-cBP
+bsK
bsK
bAg
bpY
@@ -81757,7 +82179,7 @@ car
bXk
ccf
ccZ
-cdU
+dnD
cew
cfd
cfw
@@ -81767,7 +82189,7 @@ aht
abI
abI
cij
-cit
+pZh
ciH
abI
abI
@@ -81775,7 +82197,7 @@ aht
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -82014,17 +82436,17 @@ cdN
ccW
ceY
cda
-cdV
+vrY
cex
cfe
cfx
cfa
cgv
cgV
-yia
+mwH
aaa
cik
-ciu
+ctH
ciI
aaa
aaa
@@ -82032,7 +82454,7 @@ aaa
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -82271,7 +82693,7 @@ cat
bXk
ccg
cey
-cdW
+mRa
cey
cey
cfy
@@ -82289,7 +82711,7 @@ bBW
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -82539,14 +82961,14 @@ bBW
aaa
aaa
abI
-yia
+mwH
aaa
bBW
bBW
cfV
cfV
bXk
-let
+aaa
aaa
aaa
aaa
@@ -82777,7 +83199,7 @@ bUi
bUV
bVO
bWA
-izp
+mCe
bYj
bYQ
bZA
@@ -82785,7 +83207,7 @@ cav
cbl
cch
cdc
-cdX
+exW
cet
cCI
cfV
@@ -82803,7 +83225,7 @@ cgV
cfV
cfV
bXk
-let
+abI
aaa
aaa
aaa
@@ -83034,7 +83456,7 @@ bUj
bUW
bVP
bWB
-izp
+mCe
bYk
bYQ
bZA
@@ -83042,25 +83464,25 @@ cam
cam
cam
cam
-cdQ
+xGZ
cet
cCI
cfV
cfV
cgv
cfV
-chz
+cDQ
cfV
-chz
+cDQ
cfV
-chz
+cDQ
cfV
-chz
+cDQ
cfV
cfV
cfV
bXk
-let
+abI
abI
abI
aaa
@@ -83216,9 +83638,9 @@ ahi
atY
auU
atY
-vTA
+lQQ
ayf
-vTA
+lQQ
aAF
aBz
aCP
@@ -83291,7 +83713,7 @@ bUk
bUX
bVQ
bWC
-izp
+mCe
bYl
bYO
bZC
@@ -83299,7 +83721,7 @@ cal
cbm
cci
cam
-cdQ
+xGZ
cet
cCI
cfV
@@ -83317,7 +83739,7 @@ cfV
cfV
cfV
bXk
-let
+abI
abI
aaa
aaa
@@ -83556,7 +83978,7 @@ caw
cbn
ccj
cam
-cdY
+hXz
bXk
bXk
bXk
@@ -83574,7 +83996,7 @@ cgY
cfV
cks
bXk
-let
+abI
aaa
aaa
aaa
@@ -83814,9 +84236,9 @@ cbo
cck
cdf
cdZ
-cez
+uSk
cff
-cfz
+gdb
cfY
cfV
cgZ
@@ -83831,7 +84253,7 @@ cgZ
cfV
cfV
bXk
-let
+abI
abI
aaa
aaa
@@ -84088,7 +84510,7 @@ cjU
ckq
ckq
bXk
-let
+abI
aaa
aaa
aaa
@@ -84345,7 +84767,7 @@ bXk
bXk
bXk
ckJ
-let
+abI
aaa
aaa
aaa
@@ -85065,7 +85487,7 @@ bsT
bus
bvz
bxg
-yhZ
+mdL
bAs
bBu
bCI
@@ -85796,7 +86218,7 @@ aBI
aES
aBI
aBI
-aGW
+aEY
aHG
aBI
aJX
@@ -85819,7 +86241,7 @@ aMb
aSX
aMb
aBI
-aGW
+aEY
bgA
bhe
aDZ
@@ -87078,12 +87500,12 @@ aaa
aaa
aaa
aaa
-eHp
-tap
-aau
-khx
-iVb
-qWK
+xEG
+wBO
+faN
+qXC
+sKf
+jnx
aJI
aLe
aMe
@@ -87102,7 +87524,7 @@ aVu
bat
aLf
bcy
-lvl
+qAM
aEj
aEj
bgC
@@ -87335,11 +87757,11 @@ aaa
aaa
aaa
aaa
-eHp
-eJt
-vpU
-fic
-uyt
+xEG
+uov
+sEc
+lQR
+vCf
aIU
aJH
aLe
@@ -87592,20 +88014,20 @@ apX
aBL
aBL
apX
-eHp
-kdc
-jZg
-eHp
+xEG
+ukd
+pvM
+xEG
aHN
aIU
aJI
-xzr
-xzr
+lAs
+lAs
aNG
aOR
-iCc
-xzr
-xzr
+iKb
+lAs
+lAs
aTb
aOT
aVp
@@ -87616,7 +88038,7 @@ aPY
bav
aLf
aFi
-nJY
+jBh
beI
bfv
bgE
@@ -87856,7 +88278,7 @@ aET
aHN
aIU
aJI
-xzr
+lAs
aMg
aNH
aOS
@@ -88113,11 +88535,11 @@ aET
aHN
aJh
bhe
-xzr
+lAs
aMh
aNI
-fID
-ecV
+fwl
+dMB
aRi
aSf
aTd
@@ -88370,13 +88792,13 @@ aHn
aIi
aJi
aKe
-xzr
+lAs
aMi
aNJ
-fID
+fwl
aPZ
aRj
-xzr
+lAs
aTe
aUo
aVs
@@ -88627,13 +89049,13 @@ aET
aHN
aIU
aJI
-xzr
+lAs
aMj
aNK
-fID
-ecV
-ecV
-iCc
+fwl
+dMB
+dMB
+iKb
aTf
aUp
aVt
@@ -88884,7 +89306,7 @@ aET
aHN
aIU
aJI
-xzr
+lAs
aMk
aNL
aOU
@@ -89141,10 +89563,10 @@ cos
coy
aJj
aJI
-xzr
+lAs
aMl
aNM
-fki
+dse
aQb
aRl
aSh
@@ -89398,14 +89820,14 @@ aDZ
aDZ
aJk
aJH
-xzr
+lAs
aMm
-xzr
+lAs
aOW
-xzr
-xzr
-xzr
-frt
+lAs
+lAs
+lAs
+eeQ
aUs
aLf
aLf
@@ -89460,7 +89882,7 @@ bVl
bWc
bWR
bXG
-bYw
+jLW
bZi
bZR
caL
@@ -89648,18 +90070,18 @@ aAP
avk
aDg
aEc
-aGW
+aEY
cot
aBI
aBI
aBI
aJl
aKf
-xzr
+lAs
aMn
-xzr
+lAs
aOX
-xzr
+lAs
aRm
aLg
aTi
@@ -89716,13 +90138,13 @@ bUA
bVm
bWd
bWS
-bWd
-bYx
+wJP
+aht
bZj
bZS
caM
cbE
-bYw
+thA
cdk
ced
bYw
@@ -89919,7 +90341,7 @@ cDa
cDa
cDa
aLg
-kqj
+wDZ
aUu
aVx
aVx
@@ -92525,9 +92947,9 @@ bDa
bEa
bFm
bGs
-bHy
-bHy
-bHy
+gMm
+gMm
+jOJ
bHy
bHy
bHy
@@ -93282,7 +93704,7 @@ bkE
aht
bnd
boh
-gFV
+bpp
bqx
brQ
btr
@@ -93555,7 +93977,7 @@ bFq
bGw
bAF
bHy
-bHy
+tYg
bHy
bHy
bHy
@@ -93807,12 +94229,12 @@ bzk
bAH
blX
blX
-bEe
+bAF
bFr
bGx
bHB
bIN
-bIN
+dAF
bLg
bMo
bNq
@@ -94064,16 +94486,16 @@ bzl
blX
bBU
bDe
-bEe
+bAF
bFs
bGy
bHC
-bGy
+kwI
bJT
-bEe
+bAF
bMp
-bEg
-bEg
+bHy
+bHy
ahi
aaa
aaa
@@ -94321,15 +94743,15 @@ bzm
blX
blX
blX
-bEe
+bAF
bFt
-bGy
+khk
bHD
-bGy
+kwI
bJU
-bEe
-bEg
-bEg
+bAF
+bHy
+bHy
abI
abI
abI
@@ -94835,15 +95257,15 @@ bzn
bAH
blX
blX
-bEe
+bAF
bFv
bGA
-bGA
-bGA
-bGA
+fBm
+fwr
+gMm
bLi
-bEg
-abI
+bHy
+bHy
aht
abI
abI
@@ -95092,15 +95514,15 @@ bzo
blX
bBU
bDe
-bEe
+bnj
bFw
-bGA
+onw
bHF
-bGy
-bGy
+rBh
+vMX
bLj
bIS
-abI
+lJr
aaa
aaa
aaa
@@ -95349,15 +95771,15 @@ bzp
blX
blX
blX
-bEe
+bnj
bFx
-bGy
+lQn
bHG
bIP
bJW
bLk
-bIS
-abI
+xfc
+lJr
aaa
aaa
aaa
@@ -95606,15 +96028,15 @@ bnj
bnj
bnj
bnj
-bEe
+bnj
bFy
bGB
-bEe
+iIy
bIQ
bJX
bLl
-bEg
-abI
+xfc
+lJr
aaa
aaa
aaa
@@ -95863,16 +96285,16 @@ bzq
bAH
blX
blX
-bEe
+bnj
bFz
bGC
-bHH
+lQn
bIR
bJY
bLm
-bEg
-abI
-aaa
+lpS
+gxK
+gxK
aaa
aaa
aaa
@@ -96120,16 +96542,16 @@ bzr
blX
blX
bDe
-bEg
+bnj
bFA
-bEg
-bEg
-bIS
-bEg
-bIS
-bEg
-abI
-aaa
+fKj
+nwu
+lQn
+wBr
+lQn
+qKm
+wTO
+gxK
aaa
aaa
aaa
@@ -96377,16 +96799,16 @@ bzs
blX
blX
blX
-bkF
+bnj
bFB
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fKj
+fKj
+ejp
+uek
+yeS
+mES
+qnT
+lJr
aaa
aaa
aaa
@@ -96634,16 +97056,16 @@ bnj
bnj
bnj
bnj
-bkF
-bjD
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bnj
+bFB
+rxQ
+fKj
+hKA
+izF
+lQn
+mES
+htU
+lJr
aaa
aaa
aaa
@@ -96891,16 +97313,16 @@ bzt
bAH
blX
blX
-bkF
+bnj
bFC
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+xGQ
+fKj
+uoj
+iXQ
+lQn
+mES
+dMI
+lJr
aaa
aaa
aaa
@@ -97148,16 +97570,16 @@ bzu
blX
blX
bDe
-bkF
-bjD
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bnj
+dNt
+mPt
+fKj
+sQr
+uyY
+tYI
+kmh
+oEG
+gxK
aaa
aaa
aaa
@@ -97405,16 +97827,16 @@ bzv
blX
blX
blX
-bkF
-bjD
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bnj
+jXA
+not
+fKj
+vpz
+ptq
+lQn
+lQn
+hFp
+gxK
aaa
aaa
aaa
@@ -97664,14 +98086,14 @@ bkF
bkF
bkF
bFD
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+gxK
+gxK
+pWF
+sCz
+lQn
+lQn
+dWy
+gxK
aaa
aaa
aaa
@@ -97916,19 +98338,19 @@ buT
bwk
aEj
bzw
-bma
-bma
-bma
+kAz
+kAz
+kAz
bEh
bzx
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fKj
+gxK
+gtb
+vJd
+oJT
+fvG
+rtE
+lJr
aaa
aaa
aaa
@@ -98178,14 +98600,14 @@ aEj
aEl
aEl
aEj
-aEj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fKj
+gxK
+lju
+qDU
+gAj
+rtE
+lJr
+lJr
aaa
aaa
aaa
@@ -98436,12 +98858,12 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+gxK
+gxK
+gxK
+lJr
+lJr
+lJr
aaa
aaa
aaa
diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm
index f57bfbbb54..79448b7dad 100644
--- a/_maps/map_files/debug/runtimestation.dmm
+++ b/_maps/map_files/debug/runtimestation.dmm
@@ -34,9 +34,7 @@
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
"al" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/structure/closet/secure_closet/atmospherics,
@@ -64,9 +62,7 @@
/turf/open/space,
/area/space/nearstation)
"ap" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/machinery/power/apc{
@@ -98,9 +94,7 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/structure/cable{
@@ -313,8 +307,7 @@
"aU" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Gravity Generator";
- req_access_txt = "11";
- req_one_access_txt = "0"
+ req_access_txt = "11"
},
/obj/structure/cable{
icon_state = "4-8"
@@ -345,8 +338,7 @@
"aX" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Gravity Generator";
- req_access_txt = "11";
- req_one_access_txt = "0"
+ req_access_txt = "11"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -538,9 +530,7 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/machinery/autolathe/hacked,
@@ -570,9 +560,7 @@
/turf/open/floor/plasteel,
/area/science)
"bG" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/machinery/power/apc{
@@ -633,9 +621,7 @@
/obj/item/reagent_containers/glass/beaker/bluespace,
/obj/item/reagent_containers/glass/beaker/bluespace,
/obj/item/reagent_containers/syringe,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel/dark,
@@ -658,9 +644,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/chemistry)
"bU" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/machinery/power/apc{
@@ -992,9 +976,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"cW" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/structure/cable,
@@ -1023,9 +1005,7 @@
/turf/open/floor/plasteel,
/area/construction)
"da" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/obj/machinery/power/apc{
@@ -1453,9 +1433,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
+/obj/machinery/airalarm/unlocked{
pixel_y = 23
},
/turf/open/floor/plasteel,
diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm
index b4c6433add..91c0fdac6f 100644
--- a/_maps/map_files/generic/CentCom.dmm
+++ b/_maps/map_files/generic/CentCom.dmm
@@ -2981,8 +2981,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "CentCom";
- opacity = 1;
- req_access_txt = "0"
+ opacity = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -3072,10 +3071,8 @@
"jk" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "XCCQMLoaddoor2";
- name = "Supply Dock Loading Door";
- opacity = 1
+ name = "Supply Dock Loading Door"
},
/obj/machinery/conveyor{
dir = 4;
@@ -3102,10 +3099,8 @@
"jm" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "XCCQMLoaddoor2";
- name = "Supply Dock Loading Door";
- opacity = 1
+ name = "Supply Dock Loading Door"
},
/obj/machinery/conveyor{
dir = 4;
@@ -3280,10 +3275,8 @@
"jI" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "XCCQMLoaddoor";
- name = "Supply Dock Loading Door";
- opacity = 1
+ name = "Supply Dock Loading Door"
},
/obj/machinery/conveyor{
dir = 8;
@@ -3308,10 +3301,8 @@
"jK" = (
/obj/machinery/door/poddoor{
density = 1;
- icon_state = "closed";
id = "XCCQMLoaddoor";
- name = "Supply Dock Loading Door";
- opacity = 1
+ name = "Supply Dock Loading Door"
},
/obj/machinery/conveyor{
dir = 8;
@@ -5083,7 +5074,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_y = 32;
- req_access_txt = "0";
use_power = 0
},
/turf/open/floor/plasteel/vault,
@@ -5334,6 +5324,24 @@
dir = 8
},
/area/centcom/control)
+"oS" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
+"oT" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tdome/tdomeobserve)
"oW" = (
/obj/structure/flora/bush,
/obj/effect/light_emitter{
@@ -6051,8 +6059,7 @@
"qT" = (
/obj/machinery/door/airlock/centcom{
name = "CentCom";
- opacity = 1;
- req_access_txt = "0"
+ opacity = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -7338,8 +7345,7 @@
/obj/machinery/button/door{
id = "XCCFerry";
name = "Hanger Bay Shutters";
- pixel_y = -38;
- req_access_txt = "0"
+ pixel_y = -38
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -8227,8 +8233,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "CentCom";
- opacity = 1;
- req_access_txt = "0"
+ opacity = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -8336,8 +8341,7 @@
/area/space)
"xc" = (
/obj/machinery/door/airlock/external{
- name = "Ferry Airlock";
- req_access_txt = "0"
+ name = "Ferry Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -8847,8 +8851,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "CentCom";
- opacity = 1;
- req_access_txt = "0"
+ opacity = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -9971,7 +9974,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_y = -32;
- req_access_txt = "0";
use_power = 0
},
/obj/effect/turf_decal/stripes/line{
@@ -10559,8 +10561,7 @@
"Eg" = (
/obj/machinery/door/airlock/centcom{
name = "Thunderdome Booth";
- opacity = 1;
- req_access_txt = "0"
+ opacity = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -11091,8 +11092,7 @@
"FK" = (
/obj/machinery/door/airlock/centcom{
name = "Thunderdome Backstage";
- opacity = 1;
- req_access_txt = "0"
+ opacity = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -11838,13 +11838,6 @@
},
/turf/open/floor/plasteel/bar,
/area/tdome/tdomeobserve)
-"HE" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks/beer,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/tdome/tdomeobserve)
"HF" = (
/obj/structure/sink{
dir = 4;
@@ -11939,13 +11932,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
-"HQ" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/tdome/tdomeobserve)
"HR" = (
/obj/structure/sink{
dir = 4;
@@ -13529,8 +13515,7 @@
"NU" = (
/obj/machinery/door/airlock/centcom{
name = "CentCom";
- opacity = 1;
- req_access_txt = "0"
+ opacity = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -13544,8 +13529,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "CentCom";
- opacity = 1;
- req_access_txt = "0"
+ opacity = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -13638,8 +13622,7 @@
/area/centcom/control)
"Xy" = (
/obj/machinery/door/airlock/external{
- name = "Ferry Airlock";
- req_access_txt = "0"
+ name = "Ferry Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -15573,7 +15556,7 @@ fX
fX
fX
fX
-fY
+fX
fX
fX
fX
@@ -16344,7 +16327,7 @@ fX
fX
fX
fX
-fX
+fY
fX
fX
fX
@@ -17622,21 +17605,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -17879,21 +17862,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -18136,21 +18119,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -18393,21 +18376,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -18650,21 +18633,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -18907,21 +18890,21 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -59893,8 +59876,8 @@ Ep
GU
GM
Hw
-HE
-HQ
+oS
+oT
HX
Ie
Iq
diff --git a/_maps/shuttles/arrival_delta.dmm b/_maps/shuttles/arrival_delta.dmm
index df4976c7e4..75b65c8d11 100644
--- a/_maps/shuttles/arrival_delta.dmm
+++ b/_maps/shuttles/arrival_delta.dmm
@@ -17,7 +17,6 @@
dwidth = 4;
height = 17;
name = "delta arrivals shuttle";
- timid = 1;
width = 9
},
/turf/closed/wall/mineral/plastitanium,
@@ -158,8 +157,7 @@
/area/shuttle/arrival)
"n" = (
/obj/machinery/door/airlock/shuttle{
- name = "Arrival Shuttle Airlock";
- req_access_txt = "0"
+ name = "Arrival Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -272,7 +270,6 @@
"C" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- req_access_txt = "0";
use_power = 0
},
/turf/closed/wall/mineral/titanium/nodiagonal,
@@ -345,8 +342,7 @@
dir = 2
},
/obj/machinery/door/airlock/shuttle{
- name = "Arrival Shuttle Airlock";
- req_access_txt = "0"
+ name = "Arrival Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
diff --git a/_maps/shuttles/cargo_birdboat.dmm b/_maps/shuttles/cargo_birdboat.dmm
index 4abd694656..8815239d65 100644
--- a/_maps/shuttles/cargo_birdboat.dmm
+++ b/_maps/shuttles/cargo_birdboat.dmm
@@ -112,8 +112,7 @@
},
/obj/docking_port/mobile/supply{
dwidth = 3;
- width = 10;
- timid = 1
+ width = 10
},
/turf/open/floor/plating,
/area/shuttle/supply)
diff --git a/_maps/shuttles/cargo_box.dmm b/_maps/shuttles/cargo_box.dmm
index 8f5a8ef1b4..e4da4bf228 100644
--- a/_maps/shuttles/cargo_box.dmm
+++ b/_maps/shuttles/cargo_box.dmm
@@ -49,8 +49,7 @@
},
/obj/docking_port/mobile/supply{
dwidth = 5;
- width = 12;
- timid = 1
+ width = 12
},
/turf/open/floor/plating,
/area/shuttle/supply)
diff --git a/_maps/shuttles/cargo_delta.dmm b/_maps/shuttles/cargo_delta.dmm
index ba8a8a555f..9fb96591fb 100644
--- a/_maps/shuttles/cargo_delta.dmm
+++ b/_maps/shuttles/cargo_delta.dmm
@@ -92,7 +92,6 @@
/obj/docking_port/mobile/supply{
dir = 4;
dwidth = 4;
- timid = 1;
width = 12
},
/turf/open/floor/plating,
diff --git a/_maps/shuttles/emergency_airless.dmm b/_maps/shuttles/emergency_airless.dmm
index 1606703ac2..d58c5e7604 100644
--- a/_maps/shuttles/emergency_airless.dmm
+++ b/_maps/shuttles/emergency_airless.dmm
@@ -37,7 +37,6 @@
name = "Shuttle Under Construction";
port_direction = 4;
preferred_direction = 2;
- timid = 1;
width = 30
},
/turf/open/floor/plating/airless,
diff --git a/_maps/shuttles/emergency_arena.dmm b/_maps/shuttles/emergency_arena.dmm
index 037af600f2..b20ffddbc6 100644
--- a/_maps/shuttles/emergency_arena.dmm
+++ b/_maps/shuttles/emergency_arena.dmm
@@ -57,8 +57,7 @@
"o" = (
/obj/effect/forcefield/arena_shuttle_entrance,
/obj/docking_port/mobile/emergency{
- name = "The Arena";
- timid = 1
+ name = "The Arena"
},
/turf/open/indestructible/necropolis/air,
/area/shuttle/escape/arena)
diff --git a/_maps/shuttles/emergency_asteroid.dmm b/_maps/shuttles/emergency_asteroid.dmm
index 01772ed706..ef408d147f 100644
--- a/_maps/shuttles/emergency_asteroid.dmm
+++ b/_maps/shuttles/emergency_asteroid.dmm
@@ -35,8 +35,7 @@
dwidth = 10;
height = 13;
name = "Asteroid emergency shuttle";
- width = 28;
- timid = 1
+ width = 28
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
@@ -111,8 +110,7 @@
/area/shuttle/escape)
"aG" = (
/obj/machinery/door/airlock/mining{
- name = "Emergency Shuttle Storage";
- req_access_txt = "0"
+ name = "Emergency Shuttle Storage"
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
@@ -310,7 +308,6 @@
/area/shuttle/escape)
"bq" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
name = "Escape Shuttle Infirmary";
req_access_txt = "5"
},
@@ -318,9 +315,7 @@
/area/shuttle/escape)
"br" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_bar.dmm b/_maps/shuttles/emergency_bar.dmm
index 262ed4029b..ef347ed61d 100644
--- a/_maps/shuttles/emergency_bar.dmm
+++ b/_maps/shuttles/emergency_bar.dmm
@@ -9,6 +9,13 @@
/obj/effect/spawner/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/escape)
+"ad" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar,
+/area/shuttle/escape)
"ae" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/escape)
@@ -36,6 +43,13 @@
},
/turf/open/floor/carpet,
/area/shuttle/escape)
+"aj" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar,
+/area/shuttle/escape)
"ak" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
@@ -242,8 +256,7 @@
name = "Emergency Shuttle Airlock"
},
/obj/docking_port/mobile/emergency{
- name = "The Emergency Escape Bar";
- timid = 1
+ name = "The Emergency Escape Bar"
},
/turf/open/floor/plasteel/bar,
/area/shuttle/escape)
@@ -251,11 +264,6 @@
/mob/living/simple_animal/hostile/alien/maid/barmaid,
/turf/open/floor/plasteel/bar,
/area/shuttle/escape)
-"aV" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/turf/open/floor/plasteel/bar,
-/area/shuttle/escape)
"aW" = (
/obj/structure/chair/wood/normal,
/turf/open/floor/plasteel/grimy,
@@ -282,11 +290,6 @@
/obj/effect/spawner/lootdrop/gambling,
/turf/open/floor/plasteel/grimy,
/area/shuttle/escape)
-"bb" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/bar,
-/area/shuttle/escape)
"bc" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-21";
@@ -322,8 +325,7 @@
/area/shuttle/escape)
"bm" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
@@ -783,9 +785,9 @@ aG
bW
bI
aS
-aV
+ad
aY
-bb
+aj
bN
be
bT
diff --git a/_maps/shuttles/emergency_birdboat.dmm b/_maps/shuttles/emergency_birdboat.dmm
index 3b62aa9d7b..df84efddfb 100644
--- a/_maps/shuttles/emergency_birdboat.dmm
+++ b/_maps/shuttles/emergency_birdboat.dmm
@@ -201,7 +201,6 @@
height = 18;
port_direction = 4;
width = 14;
- timid = 1;
name = "Birdboat emergency escape shuttle"
},
/turf/open/floor/mineral/titanium,
diff --git a/_maps/shuttles/emergency_box.dmm b/_maps/shuttles/emergency_box.dmm
index 6443518590..1b675f0538 100644
--- a/_maps/shuttles/emergency_box.dmm
+++ b/_maps/shuttles/emergency_box.dmm
@@ -203,8 +203,7 @@
name = "Emergency Shuttle Airlock"
},
/obj/docking_port/mobile/emergency{
- name = "Box emergency shuttle";
- timid = 1
+ name = "Box emergency shuttle"
},
/turf/open/floor/plating,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_cere.dmm b/_maps/shuttles/emergency_cere.dmm
index 3c9188b883..3d6550bdca 100644
--- a/_maps/shuttles/emergency_cere.dmm
+++ b/_maps/shuttles/emergency_cere.dmm
@@ -551,7 +551,6 @@
name = "Cere emergency shuttle";
port_direction = 4;
preferred_direction = 2;
- timid = 1;
width = 42
},
/turf/open/floor/plating,
diff --git a/_maps/shuttles/emergency_clown.dmm b/_maps/shuttles/emergency_clown.dmm
index b0cd4e7113..83aacc5cb2 100644
--- a/_maps/shuttles/emergency_clown.dmm
+++ b/_maps/shuttles/emergency_clown.dmm
@@ -100,8 +100,7 @@
/area/shuttle/escape)
"as" = (
/obj/machinery/door/airlock/public/glass{
- name = "Emergency Shuttle Premium Lounge";
- req_access_txt = "0"
+ name = "Emergency Shuttle Premium Lounge"
},
/turf/open/floor/bluespace,
/area/shuttle/escape)
@@ -144,8 +143,7 @@
/area/shuttle/escape)
"aA" = (
/obj/machinery/door/airlock/public/glass{
- name = "Emergency Shuttle Greentext";
- req_access_txt = "0"
+ name = "Emergency Shuttle Greentext"
},
/turf/open/floor/bluespace,
/area/shuttle/escape)
@@ -191,8 +189,7 @@
name = "Emergency Shuttle Airlock"
},
/obj/docking_port/mobile/emergency{
- name = "Snappop(tm)!";
- timid = 1
+ name = "Snappop(tm)!"
},
/turf/open/floor/plating,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_cramped.dmm b/_maps/shuttles/emergency_cramped.dmm
index d8da16a7d9..6b5893ebd2 100644
--- a/_maps/shuttles/emergency_cramped.dmm
+++ b/_maps/shuttles/emergency_cramped.dmm
@@ -62,8 +62,7 @@
dwidth = 3;
height = 5;
name = "Secure Transport Vessel 5";
- width = 14;
- timid = 1
+ width = 14
},
/turf/open/floor/plating,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm
index 6a166bfe15..ab1e589fa9 100644
--- a/_maps/shuttles/emergency_delta.dmm
+++ b/_maps/shuttles/emergency_delta.dmm
@@ -307,9 +307,7 @@
/area/shuttle/escape)
"aF" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -383,8 +381,7 @@
/area/shuttle/escape)
"aO" = (
/obj/machinery/door/airlock/shuttle{
- name = "Emergency Shuttle Airlock";
- req_access_txt = "0"
+ name = "Emergency Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -423,9 +420,7 @@
/area/shuttle/escape)
"aV" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -443,8 +438,7 @@
name = "Delta emergency shuttle";
width = 30;
preferred_direction = 2;
- port_direction = 4;
- timid = 1
+ port_direction = 4
},
/turf/open/floor/plating,
/area/shuttle/escape)
@@ -578,7 +572,6 @@
"bj" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- req_access_txt = "0";
use_power = 0
},
/turf/closed/wall/mineral/titanium/nodiagonal,
@@ -858,7 +851,6 @@
"bY" = (
/obj/machinery/door/airlock/command{
name = "Emergency Recovery Airlock";
- req_access = null;
req_access_txt = "19"
},
/obj/effect/turf_decal/stripes/line{
diff --git a/_maps/shuttles/emergency_discoinferno.dmm b/_maps/shuttles/emergency_discoinferno.dmm
index 3cd9fc7890..e1631ba1c1 100644
--- a/_maps/shuttles/emergency_discoinferno.dmm
+++ b/_maps/shuttles/emergency_discoinferno.dmm
@@ -103,8 +103,7 @@
/area/shuttle/escape)
"u" = (
/obj/docking_port/mobile/emergency{
- name = "Disco Inferno";
- timid = 1
+ name = "Disco Inferno"
},
/obj/machinery/door/airlock/gold{
armor = list("melee" = 30, "bullet" = 30, "laser" = 20, "energy" = 20, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100);
diff --git a/_maps/shuttles/emergency_goon.dmm b/_maps/shuttles/emergency_goon.dmm
index b79aa8c62c..a9f9a5b307 100644
--- a/_maps/shuttles/emergency_goon.dmm
+++ b/_maps/shuttles/emergency_goon.dmm
@@ -39,8 +39,7 @@
dir = 2;
dwidth = 9;
name = "NES Port";
- width = 19;
- timid = 1
+ width = 19
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_imfedupwiththisworld.dmm b/_maps/shuttles/emergency_imfedupwiththisworld.dmm
index 403c75b1b6..8a33387a9d 100644
--- a/_maps/shuttles/emergency_imfedupwiththisworld.dmm
+++ b/_maps/shuttles/emergency_imfedupwiththisworld.dmm
@@ -13,8 +13,7 @@
dwidth = 1;
height = 10;
name = "Oh Hi Mark";
- width = 12;
- timid = 1
+ width = 12
},
/obj/machinery/door/airlock/wood,
/turf/open/floor/wood,
diff --git a/_maps/shuttles/emergency_luxury.dmm b/_maps/shuttles/emergency_luxury.dmm
index 8306423ffd..46e49bfb57 100644
--- a/_maps/shuttles/emergency_luxury.dmm
+++ b/_maps/shuttles/emergency_luxury.dmm
@@ -24,7 +24,6 @@
dwidth = 5;
height = 14;
name = "Luxury emergency shuttle";
- timid = 1;
width = 25
},
/obj/machinery/door/airlock/gold,
diff --git a/_maps/shuttles/emergency_meta.dmm b/_maps/shuttles/emergency_meta.dmm
index 0bd4da4a7d..ede77a1499 100644
--- a/_maps/shuttles/emergency_meta.dmm
+++ b/_maps/shuttles/emergency_meta.dmm
@@ -28,7 +28,6 @@
dwidth = 5;
height = 14;
name = "Meta emergency shuttle";
- timid = 1;
width = 25
},
/turf/open/floor/mineral/titanium/blue,
@@ -248,7 +247,6 @@
"aI" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- req_access_txt = "0";
use_power = 0
},
/turf/closed/wall/mineral/titanium,
@@ -335,7 +333,6 @@
"aW" = (
/obj/machinery/door/airlock/command{
name = "Emergency Recovery Airlock";
- req_access = null;
req_access_txt = "19"
},
/turf/open/floor/mineral/titanium/blue,
@@ -349,9 +346,7 @@
/area/shuttle/escape)
"aZ" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
@@ -707,7 +702,6 @@
"bS" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- req_access_txt = "0";
use_power = 0
},
/turf/closed/wall/mineral/titanium/nodiagonal,
diff --git a/_maps/shuttles/emergency_meteor.dmm b/_maps/shuttles/emergency_meteor.dmm
index a4584813c1..aaf0be6de8 100644
--- a/_maps/shuttles/emergency_meteor.dmm
+++ b/_maps/shuttles/emergency_meteor.dmm
@@ -63,7 +63,6 @@
height = 40;
movement_force = list("KNOCKDOWN" = 3, "THROW" = 6);
name = "\proper a meteor with engines strapped to it";
- timid = 1;
width = 40
},
/turf/open/floor/plating/asteroid,
diff --git a/_maps/shuttles/emergency_mini.dmm b/_maps/shuttles/emergency_mini.dmm
index 8bf882302b..706b2b9a23 100644
--- a/_maps/shuttles/emergency_mini.dmm
+++ b/_maps/shuttles/emergency_mini.dmm
@@ -63,8 +63,7 @@
"l" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 28;
- req_access_txt = "0"
+ pixel_x = 28
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
@@ -90,9 +89,7 @@
/area/shuttle/escape)
"p" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
@@ -147,8 +144,7 @@
/area/shuttle/escape)
"z" = (
/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- req_access_txt = "0"
+ name = "Emergency NanoMed"
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
@@ -170,7 +166,6 @@
dwidth = 8;
height = 9;
name = "Mini emergency shuttle";
- timid = 1;
width = 21
},
/turf/open/floor/mineral/titanium/blue,
diff --git a/_maps/shuttles/emergency_narnar.dmm b/_maps/shuttles/emergency_narnar.dmm
index 165a2e5a2b..0f24d118ed 100644
--- a/_maps/shuttles/emergency_narnar.dmm
+++ b/_maps/shuttles/emergency_narnar.dmm
@@ -159,8 +159,7 @@
"E" = (
/obj/machinery/door/airlock/cult/friendly,
/obj/docking_port/mobile/emergency{
- name = "shuttle 667";
- timid = 1
+ name = "shuttle 667"
},
/turf/open/floor/plating,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_omega.dmm b/_maps/shuttles/emergency_omega.dmm
index 19c1cadb7e..a1f061e307 100644
--- a/_maps/shuttles/emergency_omega.dmm
+++ b/_maps/shuttles/emergency_omega.dmm
@@ -84,7 +84,6 @@
"am" = (
/obj/machinery/door/airlock/command{
name = "Emergency Recovery Airlock";
- req_access = null;
req_access_txt = "19"
},
/obj/effect/turf_decal/stripes/line{
@@ -380,7 +379,6 @@
"aM" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- req_access_txt = "0";
use_power = 0
},
/turf/closed/wall/mineral/titanium/nodiagonal,
@@ -405,8 +403,7 @@
/area/shuttle/escape)
"aP" = (
/obj/machinery/door/airlock/shuttle{
- name = "Emergency Shuttle Airlock";
- req_access_txt = "0"
+ name = "Emergency Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -453,9 +450,7 @@
/area/shuttle/escape)
"aV" = (
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Escape Shuttle Infirmary";
- req_access_txt = "0"
+ name = "Escape Shuttle Infirmary"
},
/obj/effect/turf_decal/stripes/line{
dir = 2
@@ -514,7 +509,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -26;
- req_access_txt = "0";
use_power = 0
},
/turf/open/floor/plasteel/cmo,
diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm
index 92ad72d1c5..61b41703ae 100644
--- a/_maps/shuttles/emergency_pubby.dmm
+++ b/_maps/shuttles/emergency_pubby.dmm
@@ -170,8 +170,7 @@
/area/shuttle/escape)
"aE" = (
/obj/machinery/door/airlock/public/glass{
- name = "Emergency Shuttle Cargo Hold";
- req_access_txt = "0"
+ name = "Emergency Shuttle Cargo Hold"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
@@ -288,7 +287,6 @@
height = 15;
name = "Pubby emergency shuttle";
port_direction = 4;
- timid = 1;
width = 18
},
/turf/open/floor/plating,
diff --git a/_maps/shuttles/emergency_raven.dmm b/_maps/shuttles/emergency_raven.dmm
index f1dbe29fbe..ea8bb30f86 100644
--- a/_maps/shuttles/emergency_raven.dmm
+++ b/_maps/shuttles/emergency_raven.dmm
@@ -614,7 +614,6 @@
dwidth = 14;
height = 18;
name = "CentCom Raven Battlecruiser";
- timid = 1;
width = 32
},
/obj/machinery/door/airlock/hatch,
diff --git a/_maps/shuttles/emergency_russiafightpit.dmm b/_maps/shuttles/emergency_russiafightpit.dmm
index b68eeba8e3..85e0e00dbe 100644
--- a/_maps/shuttles/emergency_russiafightpit.dmm
+++ b/_maps/shuttles/emergency_russiafightpit.dmm
@@ -277,8 +277,7 @@
"aW" = (
/obj/docking_port/mobile/emergency{
height = 15;
- name = "Box emergency shuttle";
- timid = 1
+ name = "Box emergency shuttle"
},
/obj/machinery/door/airlock/security/glass{
name = "Emergency Shuttle Airlock"
diff --git a/_maps/shuttles/emergency_scrapheap.dmm b/_maps/shuttles/emergency_scrapheap.dmm
index c2452c1761..251b1f6720 100644
--- a/_maps/shuttles/emergency_scrapheap.dmm
+++ b/_maps/shuttles/emergency_scrapheap.dmm
@@ -217,8 +217,7 @@
name = "Emergency Shuttle Airlock"
},
/obj/docking_port/mobile/emergency{
- name = "Scrapheap Challenge";
- timid = 1
+ name = "Scrapheap Challenge"
},
/turf/open/floor/plating,
/area/shuttle/escape)
@@ -324,8 +323,7 @@
/area/shuttle/escape)
"bd" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_supermatter.dmm b/_maps/shuttles/emergency_supermatter.dmm
index d5caf0ddb2..796997b361 100644
--- a/_maps/shuttles/emergency_supermatter.dmm
+++ b/_maps/shuttles/emergency_supermatter.dmm
@@ -141,8 +141,7 @@
name = "Emergency Shuttle Airlock"
},
/obj/docking_port/mobile/emergency{
- name = "Hyperfractal Gigashuttle";
- timid = 1
+ name = "Hyperfractal Gigashuttle"
},
/turf/open/floor/plating,
/area/shuttle/escape)
@@ -153,7 +152,6 @@
"aL" = (
/obj/machinery/door/airlock/external{
name = "Emergency Launch Catwalk";
- req_access = null;
req_access_txt = "10;13"
},
/turf/open/floor/plating,
diff --git a/_maps/shuttles/emergency_wabbajack.dmm b/_maps/shuttles/emergency_wabbajack.dmm
index facb14a15c..25d97e2bbf 100644
--- a/_maps/shuttles/emergency_wabbajack.dmm
+++ b/_maps/shuttles/emergency_wabbajack.dmm
@@ -154,7 +154,6 @@
name = "Emergency Shuttle Airlock"
},
/obj/docking_port/mobile/emergency{
- timid = 1;
name = "NT Lepton Violet"
},
/turf/open/floor/plating,
diff --git a/_maps/shuttles/ferry_base.dmm b/_maps/shuttles/ferry_base.dmm
index e0cdfc2c38..cb9d6c4834 100644
--- a/_maps/shuttles/ferry_base.dmm
+++ b/_maps/shuttles/ferry_base.dmm
@@ -55,8 +55,7 @@
id = "ferry";
name = "ferry shuttle";
port_direction = 2;
- width = 5;
- timid = 1
+ width = 5
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
diff --git a/_maps/shuttles/ferry_fancy.dmm b/_maps/shuttles/ferry_fancy.dmm
index 83795f0c55..a79903533e 100644
--- a/_maps/shuttles/ferry_fancy.dmm
+++ b/_maps/shuttles/ferry_fancy.dmm
@@ -72,7 +72,6 @@
name = "ferry shuttle";
port_direction = 1;
preferred_direction = 4;
- timid = 1;
width = 5
},
/turf/open/floor/pod/light,
diff --git a/_maps/shuttles/ferry_lighthouse.dmm b/_maps/shuttles/ferry_lighthouse.dmm
index f1c7bb5e69..b94e82c049 100644
--- a/_maps/shuttles/ferry_lighthouse.dmm
+++ b/_maps/shuttles/ferry_lighthouse.dmm
@@ -165,7 +165,6 @@
height = 27;
id = "ferry";
name = "The Lighthouse";
- timid = 1;
port_direction = 2;
width = 16
},
diff --git a/_maps/shuttles/ferry_meat.dmm b/_maps/shuttles/ferry_meat.dmm
index d7802a6773..989a067efe 100644
--- a/_maps/shuttles/ferry_meat.dmm
+++ b/_maps/shuttles/ferry_meat.dmm
@@ -111,8 +111,7 @@
id = "ferry";
name = "ferry shuttle";
port_direction = 2;
- width = 5;
- timid = 1
+ width = 5
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/transport)
@@ -127,7 +126,6 @@
"v" = (
/obj/machinery/door/airlock/freezer{
name = "Meat Tradeship Backroom";
- req_access = null;
req_access_txt = "28"
},
/turf/open/floor/plasteel/freezer,
diff --git a/_maps/shuttles/infiltrator_basic.dmm b/_maps/shuttles/infiltrator_basic.dmm
index 8f45a0c4f1..0367ef9352 100644
--- a/_maps/shuttles/infiltrator_basic.dmm
+++ b/_maps/shuttles/infiltrator_basic.dmm
@@ -825,8 +825,7 @@
/obj/machinery/nuclearbomb/syndicate,
/obj/machinery/door/window{
dir = 1;
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/turf/open/floor/circuit/red,
/area/shuttle/syndicate/hallway)
diff --git a/_maps/shuttles/labour_box.dmm b/_maps/shuttles/labour_box.dmm
index dac173c279..315c40b8b9 100644
--- a/_maps/shuttles/labour_box.dmm
+++ b/_maps/shuttles/labour_box.dmm
@@ -111,7 +111,6 @@
id = "laborcamp";
name = "labor camp shuttle";
port_direction = 4;
- timid = 1;
width = 9
},
/turf/open/floor/mineral/titanium/blue,
diff --git a/_maps/shuttles/mining_box.dmm b/_maps/shuttles/mining_box.dmm
index 2b1771e0c7..c525a4be88 100644
--- a/_maps/shuttles/mining_box.dmm
+++ b/_maps/shuttles/mining_box.dmm
@@ -31,8 +31,7 @@
/area/shuttle/mining)
"h" = (
/obj/machinery/door/airlock/titanium{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
+ name = "Mining Shuttle Airlock"
},
/obj/docking_port/mobile{
dir = 8;
@@ -41,7 +40,6 @@
id = "mining";
name = "mining shuttle";
port_direction = 4;
- timid = 1;
width = 7
},
/turf/open/floor/plating,
diff --git a/_maps/shuttles/mining_delta.dmm b/_maps/shuttles/mining_delta.dmm
index 44a770c4b5..68672360b5 100644
--- a/_maps/shuttles/mining_delta.dmm
+++ b/_maps/shuttles/mining_delta.dmm
@@ -62,8 +62,7 @@
/area/shuttle/mining)
"i" = (
/obj/machinery/door/airlock/shuttle{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
+ name = "Mining Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -103,8 +102,7 @@
/area/shuttle/mining)
"m" = (
/obj/machinery/door/airlock/shuttle{
- name = "Mining Shuttle Airlock";
- req_access_txt = "0"
+ name = "Mining Shuttle Airlock"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm
index d51176b1b8..2daa647497 100644
--- a/_maps/shuttles/whiteship_box.dmm
+++ b/_maps/shuttles/whiteship_box.dmm
@@ -19,7 +19,6 @@
name = "NT Medical Ship";
port_direction = 8;
preferred_direction = 4;
- timid = 1;
width = 35
},
/turf/open/floor/mineral/titanium,
diff --git a/_maps/shuttles/whiteship_cere.dmm b/_maps/shuttles/whiteship_cere.dmm
index 913f005c17..f189ba7478 100644
--- a/_maps/shuttles/whiteship_cere.dmm
+++ b/_maps/shuttles/whiteship_cere.dmm
@@ -23,7 +23,6 @@
name = "NT Recovery White-Ship";
port_direction = 8;
preferred_direction = 1;
- timid = 1;
width = 16
},
/turf/open/floor/plating,
diff --git a/_maps/shuttles/whiteship_delta.dmm b/_maps/shuttles/whiteship_delta.dmm
index 35b425ae77..8c95b8dad5 100644
--- a/_maps/shuttles/whiteship_delta.dmm
+++ b/_maps/shuttles/whiteship_delta.dmm
@@ -988,7 +988,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -28;
- req_access_txt = "0";
use_power = 0
},
/obj/effect/decal/cleanable/dirt{
@@ -1020,9 +1019,7 @@
name = "dust"
},
/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/turf/open/floor/plasteel/white,
/area/shuttle/abandoned)
@@ -1526,7 +1523,6 @@
name = "White-Ship";
port_direction = 8;
preferred_direction = 8;
- timid = 0;
width = 32
},
/turf/open/floor/plasteel/neutral,
diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm
index 38ad882ec0..02586562dd 100644
--- a/_maps/shuttles/whiteship_meta.dmm
+++ b/_maps/shuttles/whiteship_meta.dmm
@@ -40,7 +40,6 @@
name = "NT Recovery White-Ship";
port_direction = 8;
preferred_direction = 4;
- timid = 1;
width = 28
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -1427,7 +1426,6 @@
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
pixel_x = -28;
- req_access_txt = "0";
use_power = 0
},
/obj/machinery/iv_drip,
diff --git a/_maps/shuttles/whiteship_pubby.dmm b/_maps/shuttles/whiteship_pubby.dmm
index 3ef386e265..c1171c899d 100644
--- a/_maps/shuttles/whiteship_pubby.dmm
+++ b/_maps/shuttles/whiteship_pubby.dmm
@@ -94,7 +94,6 @@
name = "White Ship";
port_direction = 4;
preferred_direction = 1;
- timid = 1;
width = 9
},
/turf/open/floor/plasteel/dark,
diff --git a/_maps/templates/pirate_ship.dmm b/_maps/templates/pirate_ship.dmm
index ddf66e6a81..b9de6d8540 100644
--- a/_maps/templates/pirate_ship.dmm
+++ b/_maps/templates/pirate_ship.dmm
@@ -26,8 +26,7 @@
/obj/machinery/button/door{
id = "piratebridge";
name = "Bridge Shutters Control";
- pixel_y = -5;
- req_access_txt = "0"
+ pixel_y = -5
},
/obj/effect/decal/cleanable/dirt,
/obj/item/device/radio/intercom{
@@ -164,8 +163,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
- name = "Crew Cabin";
- req_access_txt = "0"
+ name = "Crew Cabin"
},
/turf/open/floor/plasteel/dark,
/area/shuttle/pirate)
@@ -275,8 +273,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
- name = "Captain's Quarters";
- req_access_txt = "0"
+ name = "Captain's Quarters"
},
/turf/open/floor/wood,
/area/shuttle/pirate)
@@ -408,7 +405,6 @@
normaldoorcontrol = 1;
pixel_x = -8;
pixel_y = -24;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/turretid{
@@ -508,8 +504,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
- name = "Crew Quarters";
- req_access_txt = "0"
+ name = "Crew Quarters"
},
/turf/open/floor/plasteel,
/area/shuttle/pirate)
@@ -851,7 +846,6 @@
name = "External Bolt Control";
normaldoorcontrol = 1;
pixel_x = -24;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -911,11 +905,22 @@
name = "External Bolt Control";
normaldoorcontrol = 1;
pixel_x = 24;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plating,
/area/shuttle/pirate)
+"cf" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/bar,
+/area/shuttle/pirate)
"cg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/public/glass{
@@ -929,8 +934,7 @@
base_state = "left";
dir = 1;
icon_state = "left";
- name = "Explosive Ordinance";
- req_access_txt = "0"
+ name = "Explosive Ordinance"
},
/obj/item/grenade/plastic/x4{
pixel_x = -5
@@ -1011,8 +1015,7 @@
/area/shuttle/pirate)
"cp" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/showroomfloor,
@@ -1258,34 +1261,8 @@
/area/shuttle/pirate)
"cP" = (
/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/item/storage/fancy/cigarettes{
- pixel_x = -6;
- pixel_y = -8
- },
-/obj/item/storage/fancy/cigarettes/cigpack_carp{
- pixel_x = 1;
- pixel_y = -8
- },
-/obj/item/storage/fancy/cigarettes/cigpack_midori{
- pixel_x = 8;
- pixel_y = -8
- },
-/obj/item/storage/fancy/cigarettes/cigpack_robust{
- pixel_x = -6;
- pixel_y = -14
- },
-/obj/item/storage/fancy/cigarettes/cigpack_shadyjims{
- pixel_x = 1;
- pixel_y = -14
- },
-/obj/item/storage/fancy/cigarettes/cigpack_uplift{
- pixel_x = 8;
- pixel_y = -14
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
+/obj/machinery/chem_dispenser/drinks{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/bar,
@@ -1423,14 +1400,29 @@
},
/area/shuttle/pirate)
"dd" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/bar,
-/area/shuttle/pirate)
-"de" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/fancy/cigarettes/cigpack_uplift{
+ pixel_x = 8;
+ pixel_y = -14
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_shadyjims{
+ pixel_x = 1;
+ pixel_y = -14
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_robust{
+ pixel_x = -6;
+ pixel_y = -14
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_midori{
+ pixel_x = 8;
+ pixel_y = -8
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_carp{
+ pixel_x = 1;
+ pixel_y = -8
+ },
+/obj/item/storage/fancy/cigarettes,
/turf/open/floor/plasteel/bar,
/area/shuttle/pirate)
"df" = (
@@ -1554,8 +1546,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Bar";
- req_access_txt = "0"
+ name = "Bar"
},
/turf/open/floor/plasteel/bar,
/area/shuttle/pirate)
@@ -1580,16 +1571,14 @@
id = "pirateturbinevent";
name = "Turbine Vent Control";
pixel_x = -6;
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/effect/turf_decal/stripes/line,
/obj/machinery/button/door{
id = "pirateturbineauxvent";
name = "Turbine Auxiliary Vent Control";
pixel_x = 6;
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/turf/open/floor/plasteel/floorgrime,
/area/shuttle/pirate)
@@ -1618,7 +1607,6 @@
normaldoorcontrol = 1;
pixel_x = 6;
pixel_y = -24;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/open/floor/plasteel/floorgrime,
@@ -1844,8 +1832,8 @@ bX
aj
co
aj
+cf
cP
-dd
du
aj
ai
@@ -1897,7 +1885,7 @@ aj
cq
cA
cQ
-de
+dd
dv
dI
dM
diff --git a/_maps/templates/shelter_2.dmm b/_maps/templates/shelter_2.dmm
index 4e7d3376da..85de29e8c7 100644
--- a/_maps/templates/shelter_2.dmm
+++ b/_maps/templates/shelter_2.dmm
@@ -151,7 +151,6 @@
alert = 0;
desc = "A display case containing an expensive forgery, probably.";
pixel_y = -4;
- req_access = null;
req_access_txt = "48";
start_showpiece_type = /obj/item/fakeartefact
},
diff --git a/code/__DEFINES/citadel_defines.dm b/code/__DEFINES/citadel_defines.dm
index 97bcd1ff11..d6822a37c6 100644
--- a/code/__DEFINES/citadel_defines.dm
+++ b/code/__DEFINES/citadel_defines.dm
@@ -2,8 +2,16 @@
//Be sure to update the min/max of these if you do change them.
//Measurements are in imperial units. Inches, feet, yards, miles. Tsp, tbsp, cups, quarts, gallons, etc
-//arousal HUD location
+//HUD stuff
#define ui_arousal "EAST-1:28,CENTER-4:8"//Below the health doll
+#define ui_stamina "EAST-1:28,CENTER:17" // replacing internals button
+#define ui_overridden_resist "EAST-3:24,SOUTH+1:7"
+#define ui_combat_toggle "EAST-4:22,SOUTH:5"
+
+//1:1 HUD layout stuff
+#define ui_boxcraft "EAST-4:22,SOUTH+1:6"
+#define ui_boxarea "EAST-4:6,SOUTH+1:6"
+#define ui_boxlang "EAST-5:22,SOUTH+1:6"
//organ defines
@@ -100,4 +108,13 @@
//Brainslugs
#define isborer(A) (istype(A, /mob/living/simple_animal/borer))
-#define CITADEL_MENTOR_OOC_COLOUR "#ad396e"
\ No newline at end of file
+#define CITADEL_MENTOR_OOC_COLOUR "#224724"
+
+//stamina stuff
+#define STAMINA_SOFTCRIT 100 //softcrit for stamina damage. prevents standing up, prevents performing actions that cost stamina, etc, but doesn't force a rest or stop movement
+#define STAMINA_CRIT 140 //crit for stamina damage. forces a rest, and stops movement until stamina goes back to stamina softcrit
+#define STAMINA_SOFTCRIT_TRADITIONAL 0 //same as STAMINA_SOFTCRIT except for the more traditional health calculations
+#define STAMINA_CRIT_TRADITIONAL -40 //ditto, but for STAMINA_CRIT
+#define MIN_MELEE_STAMCOST 1.25 //Minimum cost for swinging items around. Will be extra useful when stats and skills are introduced.
+
+#define CRAWLUNDER_DELAY 30 //Delay for crawling under a standing mob
diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm
index e03db1964d..446eabdd3e 100644
--- a/code/__DEFINES/construction.dm
+++ b/code/__DEFINES/construction.dm
@@ -80,7 +80,7 @@
#define MAT_BANANIUM "$bananium"
#define MAT_TITANIUM "$titanium"
#define MAT_BIOMASS "$biomass"
-#define MAT_PLASTIC "$plastic"
+#define MAT_PLASTIC "$plastic" // CITADEL ADDITION
//The amount of materials you get from a sheet of mineral like iron/diamond/glass etc
#define MINERAL_MATERIAL_AMOUNT 2000
//The maximum size of a stack object.
diff --git a/code/__DEFINES/machines.dm b/code/__DEFINES/machines.dm
index ad9fcdb2dd..f33f38cb70 100644
--- a/code/__DEFINES/machines.dm
+++ b/code/__DEFINES/machines.dm
@@ -29,7 +29,7 @@
#define BIOGENERATOR 32 //Uses biomass
#define LIMBGROWER 64 //Uses synthetic flesh
#define SMELTER 128 //uses various minerals
-#define AUTOYLATHE 256 //Uses glass/metal/Plastic
+#define AUTOYLATHE 256 //CITADEL ADDITION Uses glass/metal/Plastic CID
//Note: More then one of these can be added to a design but imprinter and lathe designs are incompatable.
//Modular computer/NTNet defines
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index cd0a7ce97c..199535a04e 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -393,7 +393,7 @@ GLOBAL_LIST_INIT(ghost_others_options, list(GHOST_OTHERS_SIMPLE, GHOST_OTHERS_DE
//Dummy mob reserve slots
#define DUMMY_HUMAN_SLOT_PREFERENCES "dummy_preference_preview"
-
+#define DUMMY_HUMAN_SLOT_ADMIN "admintools"
#define DUMMY_HUMAN_SLOT_MANIFEST "dummy_manifest_generation"
#define PR_ANNOUNCEMENTS_PER_ROUND 5 //The number of unique PR announcements allowed per round
diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm
index 3e097c46f3..daf7f9dcc3 100644
--- a/code/__HELPERS/areas.dm
+++ b/code/__HELPERS/areas.dm
@@ -15,6 +15,8 @@
var/turf/sourceT = found_turfs[1]
if(break_if_found[sourceT.type])
return FALSE
+ if (is_type_in_typecache(sourceT.loc, GLOB.typecache_shuttle_area))
+ return FALSE
found_turfs.Cut(1, 2)
var/dir_flags = checked_turfs[sourceT]
for(var/dir in GLOB.alldirs)
@@ -37,7 +39,7 @@
var/static/blacklisted_areas = typecacheof(/area/space)
var/list/turfs = detect_room(get_turf(creator), blacklisted_turfs)
if(!turfs)
- to_chat(creator, "The new area must be completely airtight.")
+ to_chat(creator, "The new area must be completely airtight and not a part of a shuttle.")
return
if(turfs.len > BP_MAX_ROOM_SIZE)
to_chat(creator, "The room you're in is too big. It is [((turfs.len / BP_MAX_ROOM_SIZE)-1)*100]% larger than allowed.")
@@ -45,7 +47,7 @@
var/list/areas = list("New Area" = /area)
for(var/i in 1 to turfs.len)
var/area/place = get_area(turfs[i])
- if(blacklisted_areas[place.type])
+ if(blacklisted_areas[place.type] || GLOB.typecache_shuttle_area[place.type])
continue
if(!place.requires_power || place.noteleport || place.hidden)
continue // No expanding powerless rooms etc
@@ -91,4 +93,4 @@
to_chat(creator, "You have created a new area, named [newA.name]. It is now weather proof, and constructing an APC will allow it to be powered.")
return TRUE
-#undef BP_MAX_ROOM_SIZE
\ No newline at end of file
+#undef BP_MAX_ROOM_SIZE
diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm
index b36a8c678b..6c28a1262d 100644
--- a/code/__HELPERS/text.dm
+++ b/code/__HELPERS/text.dm
@@ -598,33 +598,29 @@ GLOBAL_LIST_INIT(binary, list("0","1"))
return
//Regular expressions are, as usual, absolute magic
- var/regex/is_website = new("http|www.|\[a-z0-9_-]+.(com|org|net|mil|edu)+", "i")
- var/regex/is_email = new("\[a-z0-9_-]+@\[a-z0-9_-]+.\[a-z0-9_-]+", "i")
- var/regex/alphanumeric = new("\[a-z0-9]+", "i")
- var/regex/punctuation = new("\[.!?]+", "i")
var/regex/all_invalid_symbols = new("\[^ -~]+")
var/list/accepted = list()
for(var/string in proposed)
- if(findtext(string,is_website) || findtext(string,is_email) || findtext(string,all_invalid_symbols) || !findtext(string,alphanumeric))
+ if(findtext(string,GLOB.is_website) || findtext(string,GLOB.is_email) || findtext(string,all_invalid_symbols) || !findtext(string,GLOB.is_alphanumeric))
continue
var/buffer = ""
var/early_culling = TRUE
for(var/pos = 1, pos <= lentext(string), pos++)
var/let = copytext(string, pos, (pos + 1) % lentext(string))
- if(early_culling && !findtext(let,alphanumeric))
+ if(early_culling && !findtext(let,GLOB.is_alphanumeric))
continue
early_culling = FALSE
buffer += let
- if(!findtext(buffer,alphanumeric))
+ if(!findtext(buffer,GLOB.is_alphanumeric))
continue
var/punctbuffer = ""
var/cutoff = lentext(buffer)
for(var/pos = lentext(buffer), pos >= 0, pos--)
var/let = copytext(buffer, pos, (pos + 1) % lentext(buffer))
- if(findtext(let,alphanumeric))
+ if(findtext(let,GLOB.is_alphanumeric))
break
- if(findtext(let,punctuation))
+ if(findtext(let,GLOB.is_punctuation))
punctbuffer = let + punctbuffer //Note this isn't the same thing as using +=
cutoff = pos
if(punctbuffer) //We clip down excessive punctuation to get the letter count lower and reduce repeats. It's not perfect but it helps.
@@ -652,7 +648,7 @@ GLOBAL_LIST_INIT(binary, list("0","1"))
else
punctbuffer = "" //Grammer nazis be damned
buffer = copytext(buffer, 1, cutoff) + punctbuffer
- if(!findtext(buffer,alphanumeric))
+ if(!findtext(buffer,GLOB.is_alphanumeric))
continue
if(!buffer || lentext(buffer) > 280 || lentext(buffer) <= cullshort || buffer in accepted)
continue
diff --git a/code/__HELPERS/time.dm b/code/__HELPERS/time.dm
index 321a55babd..a550206ff6 100644
--- a/code/__HELPERS/time.dm
+++ b/code/__HELPERS/time.dm
@@ -144,7 +144,7 @@ GLOBAL_VAR_INIT(rollovercheck_last_timeofday, 0)
else if(day && (!minute || !second))
hour = " and 1 hour"
else
- day = "[truncate ? "hour" : "1 hour"]"
+ hour = "[truncate ? "hour" : "1 hour"]"
else
hour = null
diff --git a/code/_globalvars/lists/typecache.dm b/code/_globalvars/lists/typecache.dm
index ad4564cf3b..f1e2b03790 100644
--- a/code/_globalvars/lists/typecache.dm
+++ b/code/_globalvars/lists/typecache.dm
@@ -9,3 +9,4 @@ GLOBAL_LIST_INIT(typecache_living, typecacheof(/mob/living))
GLOBAL_LIST_INIT(typecache_machine_or_structure, typecacheof(list(/obj/machinery, /obj/structure)))
+GLOBAL_LIST_INIT(typecache_shuttle_area, typecacheof(/area/shuttle))
diff --git a/code/_globalvars/regexes.dm b/code/_globalvars/regexes.dm
new file mode 100644
index 0000000000..bd252b68ce
--- /dev/null
+++ b/code/_globalvars/regexes.dm
@@ -0,0 +1,7 @@
+//These are a bunch of regex datums for use /((any|every|no|some|head|foot)where(wolf)?\sand\s)+(\.[\.\s]+\s?where\?)?/i
+GLOBAL_DATUM_INIT(is_http_protocol, /regex, regex("^https?://"))
+
+GLOBAL_DATUM_INIT(is_website, /regex, regex("http|www.|\[a-z0-9_-]+.(com|org|net|mil|edu)+", "i"))
+GLOBAL_DATUM_INIT(is_email, /regex, regex("\[a-z0-9_-]+@\[a-z0-9_-]+.\[a-z0-9_-]+", "i"))
+GLOBAL_DATUM_INIT(is_alphanumeric, /regex, regex("\[a-z0-9]+", "i"))
+GLOBAL_DATUM_INIT(is_punctuation, /regex, regex("\[.!?]+", "i"))
diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm
index ce9e1ead82..4c588c96fe 100644
--- a/code/_onclick/click.dm
+++ b/code/_onclick/click.dm
@@ -75,7 +75,7 @@
if(modifiers["middle"])
MiddleClickOn(A)
return
- if(modifiers["shift"])
+ if(modifiers["shift"] && (client && client.show_popup_menus || modifiers["right"])) //CIT CHANGE - makes shift-click examine use right click instead of left click in combat mode
ShiftClickOn(A)
return
if(modifiers["alt"]) // alt and alt-gr (rightalt)
@@ -85,6 +85,10 @@
CtrlClickOn(A)
return
+ if(modifiers["right"]) //CIT CHANGE - allows right clicking to perform actions
+ RightClickOn(A,params) //CIT CHANGE - ditto
+ return //CIT CHANGE - ditto
+
if(incapacitated(ignore_restraints = 1))
return
diff --git a/code/_onclick/hud/_defines.dm b/code/_onclick/hud/_defines.dm
index 9a325dfa1a..3225252520 100644
--- a/code/_onclick/hud/_defines.dm
+++ b/code/_onclick/hud/_defines.dm
@@ -82,9 +82,9 @@
#define ui_acti "EAST-3:24,SOUTH:5"
#define ui_zonesel "EAST-1:28,SOUTH:5"
#define ui_acti_alt "EAST-1:28,SOUTH:5" //alternative intent switcher for when the interface is hidden (F12)
-#define ui_crafting "EAST-4:22,SOUTH:5"
-#define ui_building "EAST-4:22,SOUTH:21"
-#define ui_language_menu "EAST-4:6,SOUTH:21"
+#define ui_crafting "EAST-5:20,SOUTH:5"//CIT CHANGE - moves this over one tile to accommodate for combat mode toggle
+#define ui_building "EAST-5:20,SOUTH:21"//CIT CHANGE - ditto
+#define ui_language_menu "EAST-5:4,SOUTH:21"//CIT CHANGE - ditto
#define ui_borg_pull "EAST-2:26,SOUTH+1:7"
#define ui_borg_radio "EAST-1:28,SOUTH+1:7"
@@ -102,7 +102,7 @@
//Middle right (status indicators)
#define ui_healthdoll "EAST-1:28,CENTER-2:13"
#define ui_health "EAST-1:28,CENTER-1:15"
-#define ui_internal "EAST-1:28,CENTER:17"
+#define ui_internal "EAST-1:28,CENTER+1:19"//CIT CHANGE - moves internal icon up a little bit to accommodate for the stamina meter
#define ui_mood "EAST-1:28,CENTER-3:10"
//borgs
diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm
index 455a0f20e1..c3288e61fc 100644
--- a/code/_onclick/hud/human.dm
+++ b/code/_onclick/hud/human.dm
@@ -89,19 +89,29 @@
..()
owner.overlay_fullscreen("see_through_darkness", /obj/screen/fullscreen/see_through_darkness)
+ var/widescreenlayout = FALSE //CIT CHANGE - adds support for different hud layouts depending on widescreen pref
+ if(owner.client && owner.client.prefs && owner.client.prefs.widescreenpref) //CIT CHANGE - ditto
+ widescreenlayout = TRUE // CIT CHANGE - ditto
+
var/obj/screen/using
var/obj/screen/inventory/inv_box
using = new /obj/screen/craft
using.icon = ui_style
+ if(!widescreenlayout) // CIT CHANGE
+ using.screen_loc = ui_boxcraft // CIT CHANGE
static_inventory += using
using = new/obj/screen/language_menu
using.icon = ui_style
+ if(!widescreenlayout) // CIT CHANGE
+ using.screen_loc = ui_boxlang // CIT CHANGE
static_inventory += using
using = new /obj/screen/area_creator
using.icon = ui_style
+ if(!widescreenlayout) // CIT CHANGE
+ using.screen_loc = ui_boxarea // CIT CHANGE
static_inventory += using
action_intent = new /obj/screen/act_intent/segmented
@@ -109,11 +119,19 @@
static_inventory += action_intent
using = new /obj/screen/mov_intent
- using.icon = ui_style
+ using.icon = tg_ui_icon_to_cit_ui(ui_style) // CIT CHANGE - overrides mov intent icon
using.icon_state = (mymob.m_intent == MOVE_INTENT_RUN ? "running" : "walking")
using.screen_loc = ui_movi
static_inventory += using
+ //CITADEL CHANGES - sprint button
+ using = new /obj/screen/sprintbutton
+ using.icon = tg_ui_icon_to_cit_ui(ui_style)
+ using.icon_state = (owner.sprinting ? "act_sprint_on" : "act_sprint")
+ using.screen_loc = ui_movi
+ static_inventory += using
+ //END OF CITADEL CHANGES
+
using = new /obj/screen/drop()
using.icon = ui_style
using.screen_loc = ui_drop_throw
@@ -207,9 +225,21 @@
using = new /obj/screen/resist()
using.icon = ui_style
- using.screen_loc = ui_pull_resist
+ using.screen_loc = ui_overridden_resist // CIT CHANGE - changes this to overridden resist
hotkeybuttons += using
+ //CIT CHANGES - rest and combat mode buttons
+ using = new /obj/screen/restbutton()
+ using.icon = tg_ui_icon_to_cit_ui(ui_style)
+ using.screen_loc = ui_pull_resist
+ static_inventory += using
+
+ using = new /obj/screen/combattoggle()
+ using.icon = tg_ui_icon_to_cit_ui(ui_style)
+ using.screen_loc = ui_combat_toggle
+ static_inventory += using
+ //END OF CIT CHANGES
+
using = new /obj/screen/human/toggle()
using.icon = ui_style
using.screen_loc = ui_inventory
@@ -280,10 +310,16 @@
healths = new /obj/screen/healths()
infodisplay += healths
- //CIT CHANGE - adds arousal to hud
+ //CIT CHANGE - adds arousal and stamina to hud
arousal = new /obj/screen/arousal()
arousal.icon_state = (owner.canbearoused == 1 ? "arousal0" : "")
infodisplay += arousal
+
+ staminas = new /obj/screen/staminas()
+ infodisplay += staminas
+
+ staminabuffer = new /obj/screen/staminabuffer()
+ infodisplay += staminabuffer
//END OF CIT CHANGES
healthdoll = new /obj/screen/healthdoll()
diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm
index 1fc40d3007..8fc30e95e6 100644
--- a/code/_onclick/item_attack.dm
+++ b/code/_onclick/item_attack.dm
@@ -54,6 +54,10 @@
if(flags_1 & NOBLUDGEON_1)
return
+ if(user.staminaloss >= STAMINA_SOFTCRIT) // CIT CHANGE - makes it impossible to attack in stamina softcrit
+ to_chat(user, "You're too exhausted.") // CIT CHANGE - ditto
+ return // CIT CHANGE - ditto
+
if(force && user.has_trait(TRAIT_PACIFISM))
to_chat(user, "You don't want to harm other living beings!")
return
@@ -72,12 +76,17 @@
add_logs(user, M, "attacked", src.name, "(INTENT: [uppertext(user.a_intent)]) (DAMTYPE: [uppertext(damtype)])")
add_fingerprint(user)
+ user.adjustStaminaLossBuffered(getweight())//CIT CHANGE - makes attacking things cause stamina loss
//the equivalent of the standard version of attack() but for object targets.
/obj/item/proc/attack_obj(obj/O, mob/living/user)
SendSignal(COMSIG_ITEM_ATTACK_OBJ, O, user)
if(flags_1 & NOBLUDGEON_1)
return
+ if(user.staminaloss >= STAMINA_SOFTCRIT) // CIT CHANGE - makes it impossible to attack in stamina softcrit
+ to_chat(user, "You're too exhausted.") // CIT CHANGE - ditto
+ return // CIT CHANGE - ditto
+ user.adjustStaminaLossBuffered(getweight()*1.2)//CIT CHANGE - makes attacking things cause stamina loss
user.changeNext_move(CLICK_CD_MELEE)
user.do_attack_animation(O)
O.attacked_by(src, user)
@@ -94,7 +103,16 @@
/mob/living/attacked_by(obj/item/I, mob/living/user)
send_item_attack_message(I, user)
if(I.force)
- apply_damage(I.force, I.damtype)
+ //CIT CHANGES START HERE - combatmode and resting checks
+ var/totitemdamage = I.force
+ if(iscarbon(user))
+ var/mob/living/carbon/tempcarb = user
+ if(!tempcarb.combatmode)
+ totitemdamage *= 0.5
+ if(user.resting)
+ totitemdamage *= 0.5
+ //CIT CHANGES END HERE
+ apply_damage(totitemdamage, I.damtype) //CIT CHANGE - replaces I.force with totitemdamage
if(I.damtype == BRUTE)
if(prob(33))
I.add_mob_blood(src)
diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm
index a19f3147e7..b662fd4f84 100644
--- a/code/controllers/configuration/configuration.dm
+++ b/code/controllers/configuration/configuration.dm
@@ -67,6 +67,9 @@
entries_by_type -= CE.type
/datum/controller/configuration/proc/LoadEntries(filename, list/stack = list())
+ if(IsAdminAdvancedProcCall())
+ return
+
var/filename_to_test = world.system_type == MS_WINDOWS ? lowertext(filename) : filename
if(filename_to_test in stack)
log_config("Warning: Config recursion detected ([english_list(stack)]), breaking!")
diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm
index 91e1330316..0608baea8c 100644
--- a/code/controllers/configuration/entries/general.dm
+++ b/code/controllers/configuration/entries/general.dm
@@ -320,7 +320,6 @@
/datum/config_entry/number/client_warn_version
config_entry_value = null
min_val = 500
- max_val = DM_VERSION - 1
/datum/config_entry/string/client_warn_message
config_entry_value = "Your version of byond may have issues or be blocked from accessing this server in the future."
@@ -330,7 +329,6 @@
/datum/config_entry/number/client_error_version
config_entry_value = null
min_val = 500
- max_val = DM_VERSION - 1
/datum/config_entry/string/client_error_message
config_entry_value = "Your version of byond is too old, may have issues, and is blocked from accessing this server."
diff --git a/code/controllers/master.dm b/code/controllers/master.dm
index 68f75491f3..70552e0ccb 100644
--- a/code/controllers/master.dm
+++ b/code/controllers/master.dm
@@ -405,7 +405,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
if (SS_flags & SS_NO_FIRE)
subsystemstocheck -= SS
continue
- if (!(SS_flags & SS_TICKER) && (SS_flags & SS_KEEP_TIMING) && SS.last_fire + (SS.wait * 0.75) > world.time)
+ if ((SS_flags & (SS_TICKER|SS_KEEP_TIMING)) == SS_KEEP_TIMING && SS.last_fire + (SS.wait * 0.75) > world.time)
continue
SS.enqueue()
. = 1
diff --git a/code/controllers/subsystem/nightshift.dm b/code/controllers/subsystem/nightshift.dm
index bb21968463..325ba212c6 100644
--- a/code/controllers/subsystem/nightshift.dm
+++ b/code/controllers/subsystem/nightshift.dm
@@ -23,25 +23,23 @@ SUBSYSTEM_DEF(nightshift)
/datum/controller/subsystem/nightshift/proc/announce(message)
priority_announce(message, sound='sound/misc/notice2.ogg', sender_override="Automated Lighting System Announcement")
-/datum/controller/subsystem/nightshift/proc/check_nightshift(force_set = FALSE)
+/datum/controller/subsystem/nightshift/proc/check_nightshift()
var/emergency = GLOB.security_level >= SEC_LEVEL_RED
- var/nightshift = FALSE
- if (!emergency)
- var/time = station_time()
- nightshift = time < nightshift_end_time || time > nightshift_start_time
-
var/announcing = TRUE
- if(high_security_mode && !emergency)
- high_security_mode = FALSE
- announce("Restoring night lighting configuration to normal operation.")
- announcing = FALSE
- else if(!high_security_mode && emergency)
- high_security_mode = TRUE
- announce("Night lighting disabled: Station is in a state of emergency.")
- announcing = FALSE
-
- if((nightshift_active != nightshift) || force_set)
- update_nightshift(nightshift, announcing)
+ var/time = station_time()
+ var/night_time = (time < nightshift_end_time) || (time > nightshift_start_time)
+ if(high_security_mode != emergency)
+ high_security_mode = emergency
+ if(night_time)
+ announcing = FALSE
+ if(!emergency)
+ announce("Restoring night lighting configuration to normal operation.")
+ else
+ announce("Disabling night lighting: Station is in a state of emergency.")
+ if(emergency)
+ night_time = FALSE
+ if(nightshift_active != night_time)
+ update_nightshift(night_time, announcing)
/datum/controller/subsystem/nightshift/proc/update_nightshift(active, announce = TRUE)
nightshift_active = active
diff --git a/code/controllers/subsystem/processing/traits.dm b/code/controllers/subsystem/processing/traits.dm
index 17eae4bda2..8e31260d94 100644
--- a/code/controllers/subsystem/processing/traits.dm
+++ b/code/controllers/subsystem/processing/traits.dm
@@ -26,10 +26,12 @@ PROCESSING_SUBSYSTEM_DEF(traits)
/datum/controller/subsystem/processing/traits/proc/AssignTraits(mob/living/user, client/cli, spawn_effects)
GenerateTraits(cli)
- for(var/V in cli.prefs.character_traits)
- user.add_trait_datum(V, spawn_effects)
+ if(user && cli && cli.prefs.character_traits)
+ for(var/V in cli.prefs.character_traits)
+ user.add_trait_datum(V, spawn_effects)
/datum/controller/subsystem/processing/traits/proc/GenerateTraits(client/user)
- if(user.prefs.character_traits.len)
- return
- user.prefs.character_traits = user.prefs.all_traits
+ if(user && user.prefs && user.prefs.character_traits)
+ if(user.prefs.character_traits.len)
+ return
+ user.prefs.character_traits = user.prefs.all_traits
diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index 62e20c9854..2db34bb897 100755
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -649,6 +649,7 @@ SUBSYSTEM_DEF(ticker)
/datum/controller/subsystem/ticker/Shutdown()
gather_newscaster() //called here so we ensure the log is created even upon admin reboot
+ save_admin_data()
if(!round_end_sound)
round_end_sound = pick(\
'sound/roundend/newroundsexy.ogg',
diff --git a/code/datums/action.dm b/code/datums/action.dm
index a7437a0440..e230f49089 100644
--- a/code/datums/action.dm
+++ b/code/datums/action.dm
@@ -647,3 +647,45 @@
var/datum/language_holder/H = M.get_language_holder()
H.open_language_menu(usr)
+/datum/action/item_action/wheelys
+ name = "Toggle Wheely-Heel's Wheels"
+ desc = "Pops out or in your wheely-heel's wheels."
+ icon_icon = 'icons/mob/actions/actions_items.dmi'
+ button_icon_state = "wheelys"
+
+/datum/action/item_action/kindleKicks
+ name = "Activate Kindle Kicks"
+ desc = "Kick you feet together, activating the lights in your Kindle Kicks."
+ icon_icon = 'icons/mob/actions/actions_items.dmi'
+ button_icon_state = "kindleKicks"
+
+//Small sprites
+/datum/action/small_sprite
+ name = "Toggle Giant Sprite"
+ desc = "Others will always see you as giant"
+ button_icon_state = "smallqueen"
+ background_icon_state = "bg_alien"
+ var/small = FALSE
+ var/small_icon
+ var/small_icon_state
+
+/datum/action/small_sprite/queen
+ small_icon = 'icons/mob/alien.dmi'
+ small_icon_state = "alienq"
+
+/datum/action/small_sprite/drake
+ small_icon = 'icons/mob/lavaland/lavaland_monsters.dmi'
+ small_icon_state = "ash_whelp"
+
+/datum/action/small_sprite/Trigger()
+ ..()
+ if(!small)
+ var/image/I = image(icon = small_icon, icon_state = small_icon_state, loc = owner)
+ I.override = TRUE
+ I.pixel_x -= owner.pixel_x
+ I.pixel_y -= owner.pixel_y
+ owner.add_alt_appearance(/datum/atom_hud/alternate_appearance/basic, "smallsprite", I)
+ small = TRUE
+ else
+ owner.remove_alt_appearance("smallsprite")
+ small = FALSE
diff --git a/code/datums/brain_damage/brain_trauma.dm b/code/datums/brain_damage/brain_trauma.dm
index 508dccef4a..f6a09601dd 100644
--- a/code/datums/brain_damage/brain_trauma.dm
+++ b/code/datums/brain_damage/brain_trauma.dm
@@ -12,14 +12,6 @@
var/can_gain = TRUE //can this be gained through random traumas?
var/resilience = TRAUMA_RESILIENCE_BASIC //how hard is this to cure?
-/datum/brain_trauma/New(obj/item/organ/brain/B, _resilience)
- brain = B
- owner = B.owner
- if(_resilience)
- resilience = _resilience
- if(owner)
- on_gain()
-
/datum/brain_trauma/Destroy()
brain.traumas -= src
if(owner)
diff --git a/code/datums/brain_damage/phobia.dm b/code/datums/brain_damage/phobia.dm
index 7557e8fd9c..24efb013c8 100644
--- a/code/datums/brain_damage/phobia.dm
+++ b/code/datums/brain_damage/phobia.dm
@@ -14,7 +14,7 @@
var/list/trigger_turfs
var/list/trigger_species
-/datum/brain_trauma/mild/phobia/New(mob/living/carbon/C, _permanent, specific_type)
+/datum/brain_trauma/mild/phobia/New(specific_type)
phobia_type = specific_type
if(!phobia_type)
phobia_type = pick(SStraumas.phobia_types)
diff --git a/code/datums/browser.dm b/code/datums/browser.dm
index f1423bcf6e..fa5b054f48 100644
--- a/code/datums/browser.dm
+++ b/code/datums/browser.dm
@@ -312,8 +312,9 @@
/datum/browser/modal/preflikepicker
var/settings = list()
var/icon/preview_icon = null
+ var/datum/callback/preview_update
-/datum/browser/modal/preflikepicker/New(User,Message,Title,Button1="Ok",Button2,Button3,StealFocus = 1, Timeout = FALSE,list/settings,inputtype="checkbox", width = 400, height, slidecolor)
+/datum/browser/modal/preflikepicker/New(User,Message,Title,Button1="Ok",Button2,Button3,StealFocus = 1, Timeout = FALSE,list/settings,inputtype="checkbox", width = 600, height, slidecolor)
if (!User)
return
src.settings = settings
@@ -322,12 +323,20 @@
set_content(ShowChoices(User))
/datum/browser/modal/preflikepicker/proc/ShowChoices(mob/user)
+ if (settings["preview_callback"])
+ var/datum/callback/callback = settings["preview_callback"]
+ preview_icon = callback.Invoke(settings)
+ if (preview_icon)
+ user << browse_rsc(preview_icon, "previewicon.png")
var/dat = ""
for (var/name in settings["mainsettings"])
var/setting = settings["mainsettings"][name]
if (setting["type"] == "datum")
- dat += "[setting["desc"]]: [setting["value"]]
"
+ if (setting["subtypesonly"])
+ dat += "[setting["desc"]]: [setting["value"]]
"
+ else
+ dat += "[setting["desc"]]: [setting["value"]]
"
else
dat += "[setting["desc"]]: [setting["value"]]
"
@@ -354,7 +363,13 @@
var/setting = href_list["setting"]
switch (href_list["type"])
if ("datum")
- settings["mainsettings"][setting]["value"] = pick_closest_path(null, make_types_fancy(typesof(text2path(href_list["path"]))))
+ var/oldval = settings["mainsettings"][setting]["value"]
+ if (href_list["subtypesonly"])
+ settings["mainsettings"][setting]["value"] = pick_closest_path(null, make_types_fancy(subtypesof(text2path(href_list["path"]))))
+ else
+ settings["mainsettings"][setting]["value"] = pick_closest_path(null, make_types_fancy(typesof(text2path(href_list["path"]))))
+ if (isnull(settings["mainsettings"][setting]["value"]))
+ settings["mainsettings"][setting]["value"] = oldval
if ("string")
settings["mainsettings"][setting]["value"] = stripped_input(user, "Enter new value for [settings["mainsettings"][setting]["desc"]]", "Enter new value for [settings["mainsettings"][setting]["desc"]]")
if ("number")
@@ -363,6 +378,9 @@
settings["mainsettings"][setting]["value"] = input(user, "[settings["mainsettings"][setting]["desc"]]?") in list("Yes","No")
if ("ckey")
settings["mainsettings"][setting]["value"] = input(user, "[settings["mainsettings"][setting]["desc"]]?") in list("none") + GLOB.directory
+ if (settings["mainsettings"][setting]["callback"])
+ var/datum/callback/callback = settings["mainsettings"][setting]["callback"]
+ settings = callback.Invoke(settings)
if (href_list["button"])
var/button = text2num(href_list["button"])
if (button <= 3 && button >= 1)
diff --git a/code/datums/components/material_container.dm b/code/datums/components/material_container.dm
index e3f0685ebb..830f2d9a42 100644
--- a/code/datums/components/material_container.dm
+++ b/code/datums/components/material_container.dm
@@ -350,8 +350,3 @@
/datum/material/biomass
name = "Biomass"
id = MAT_BIOMASS
-
-/datum/material/plastic
- name = "Plastic"
- id = MAT_PLASTIC
- sheet_type = /obj/item/stack/sheet/plastic
diff --git a/code/datums/datumvars.dm b/code/datums/datumvars.dm
index 4e9aab7b4c..3158a2660e 100644
--- a/code/datums/datumvars.dm
+++ b/code/datums/datumvars.dm
@@ -1026,7 +1026,7 @@
to_chat(usr, "This can only be done to instances of type /mob/living/carbon")
return
- C.cure_all_traumas(TRUE, TRAUMA_RESILIENCE_ABSOLUTE)
+ C.cure_all_traumas(TRAUMA_RESILIENCE_ABSOLUTE)
href_list["datumrefresh"] = href_list["curetraumas"]
diff --git a/code/datums/diseases/advance/symptoms/viral.dm b/code/datums/diseases/advance/symptoms/viral.dm
index 960ccd8096..55807aed6b 100644
--- a/code/datums/diseases/advance/symptoms/viral.dm
+++ b/code/datums/diseases/advance/symptoms/viral.dm
@@ -46,60 +46,3 @@ BONUS
stage_speed = 5
transmittable = 3
level = 3
-
-/*
-//////////////////////////////////////
-
-Viral aggressive metabolism
-
- Reduced stealth.
- Small resistance boost.
- Increased stage speed.
- Small transmittablity boost.
- Medium Level.
-
-Bonus
- The virus starts at stage 5, but after a certain time will start curing itself.
- Stages still increase naturally with stage speed.
-
-//////////////////////////////////////
-*/
-
-/datum/symptom/viralreverse
-
- name = "Viral aggressive metabolism"
- desc = "The virus sacrifices its long term survivability to nearly instantly fully spread inside a host. \
- The virus will start at the last stage, but will eventually decay and die off by itself."
- stealth = -2
- resistance = 1
- stage_speed = 3
- transmittable = 1
- level = 3
- symptom_delay_min = 1
- symptom_delay_max = 1
- var/time_to_cure
- threshold_desc = "Resistance/Stage Speed: Highest between these determines the amount of time before self-curing.
\
- Stealth 4: Doubles the time before the virus self-cures."
-
-/datum/symptom/viralreverse/Activate(datum/disease/advance/A)
- if(!..())
- return
- if(time_to_cure > 0)
- time_to_cure--
- else
- var/mob/living/M = A.affected_mob
- Heal(M, A)
-
-/datum/symptom/viralreverse/proc/Heal(mob/living/M, datum/disease/advance/A)
- A.stage -= 1
- if(A.stage < 2)
- to_chat(M, "You suddenly feel healthy.")
- A.cure()
-
-/datum/symptom/viralreverse/Start(datum/disease/advance/A)
- if(!..())
- return
- A.stage = 5
- if(A.properties["stealth"] >= 4) //more time before it's cured
- power = 2
- time_to_cure = max(A.properties["resistance"], A.properties["stage_rate"]) * 10 * power
diff --git a/code/datums/ert.dm b/code/datums/ert.dm
new file mode 100644
index 0000000000..d3c256308d
--- /dev/null
+++ b/code/datums/ert.dm
@@ -0,0 +1,55 @@
+/datum/ert
+ var/mobtype = /mob/living/carbon/human
+ var/team = /datum/team/ert
+ var/opendoors = TRUE
+ var/leader_role = /datum/antagonist/ert/commander
+ var/enforce_human = TRUE
+ var/roles = list(/datum/antagonist/ert/security, /datum/antagonist/ert/medic, /datum/antagonist/ert/engineer) //List of possible roles to be assigned to ERT members.
+ var/rename_team
+ var/code
+ var/mission = "Assist the station."
+ var/teamsize = 5
+ var/polldesc
+
+/datum/ert/New()
+ if (!polldesc)
+ polldesc = "a Code [code] Nanotrasen Emergency Response Team"
+
+/datum/ert/blue
+ opendoors = FALSE
+ code = "Blue"
+
+/datum/ert/amber
+ code = "Amber"
+
+/datum/ert/red
+ leader_role = /datum/antagonist/ert/commander/red
+ roles = list(/datum/antagonist/ert/security/red, /datum/antagonist/ert/medic/red, /datum/antagonist/ert/engineer/red)
+ code = "Red"
+
+/datum/ert/deathsquad
+ roles = list(/datum/antagonist/ert/deathsquad)
+ leader_role = /datum/antagonist/ert/deathsquad/leader
+ rename_team = "Deathsquad"
+ code = "Delta"
+ mission = "Leave no witnesses."
+ polldesc = "an elite Nanotrasen Strike Team"
+
+/datum/ert/centcom_official
+ code = "Green"
+ teamsize = 1
+ opendoors = FALSE
+ leader_role = /datum/antagonist/official
+ roles = list(/datum/antagonist/official)
+ rename_team = "CentCom Officials"
+ polldesc = "a CentCom Official"
+
+/datum/ert/centcom_official/New()
+ mission = "Conduct a routine performance review of [station_name()] and its Captain."
+
+/datum/ert/inquisition
+ roles = list(/datum/antagonist/ert/chaplain/inquisitor, /datum/antagonist/ert/security/inquisitor, /datum/antagonist/ert/medic/inquisitor)
+ leader_role = /datum/antagonist/ert/commander/inquisitor
+ rename_team = "Inquisition"
+ mission = "Destroy any traces of paranormal activity aboard the station."
+ polldesc = "a Nanotrasen paranormal response team"
diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm
index 4457ff3ebd..f968f860b0 100644
--- a/code/datums/status_effects/buffs.dm
+++ b/code/datums/status_effects/buffs.dm
@@ -295,7 +295,7 @@
owner.toxloss *= 10
owner.oxyloss *= 10
owner.cloneloss *= 10
- owner.staminaloss *= 10
+ owner.staminaloss += -10 // CIT CHANGE - makes blooddrunk status effect not exhaust you
owner.updatehealth()
last_health = owner.health
last_bruteloss = owner.getBruteLoss()
@@ -353,7 +353,7 @@
var/new_staminaloss = owner.getStaminaLoss()
if(new_staminaloss < last_staminaloss)
- var/heal_amount = (new_staminaloss - last_staminaloss) * 10
+ var/heal_amount = -5 // CIT CHANGE - makes blood drunk status effect not exhaust you
owner.adjustStaminaLoss(heal_amount, updating_health = FALSE)
new_staminaloss = owner.getStaminaLoss()
needs_health_update = TRUE
diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm
index 4b3e84a64e..49407327f5 100644
--- a/code/game/atoms_movable.dm
+++ b/code/game/atoms_movable.dm
@@ -530,6 +530,7 @@
/atom/movable/proc/relay_container_resist(mob/living/user, obj/O)
return
+
// CITADEL CHANGE - adds final_pixel_y and final_pixel_x to do_attack_animation args
/atom/movable/proc/do_attack_animation(atom/A, visual_effect_icon, obj/item/used_item, no_effect, end_pixel_y, final_pixel_y, final_pixel_x)
if(!no_effect && (visual_effect_icon || used_item))
@@ -693,10 +694,18 @@
message_admins("[src] has been moved out of bounds in [ADMIN_COORDJMP(currentturf)]. Moving it to [ADMIN_COORDJMP(targetturf)].")
/atom/movable/proc/in_bounds()
- . = FALSE
+ var/static/list/allowed_shuttles = typecacheof(list(/area/shuttle/syndicate, /area/shuttle/escape, /area/shuttle/pod_1, /area/shuttle/pod_2, /area/shuttle/pod_3, /area/shuttle/pod_4))
var/turf/T = get_turf(src)
- if (T && (is_centcom_level(T.z) || is_station_level(T.z) || is_transit_level(T.z)))
- . = TRUE
+ if (!T)
+ return FALSE
+ if (is_station_level(T.z) || is_centcom_level(T.z))
+ return TRUE
+ if (is_transit_level(T.z))
+ var/area/A = T.loc
+ if (is_type_in_typecache(A, allowed_shuttles))
+ return TRUE
+
+ return FALSE
/* Language procs */
diff --git a/code/game/gamemodes/cult/cult.dm b/code/game/gamemodes/cult/cult.dm
index d343bb35ab..2affa9ee2c 100644
--- a/code/game/gamemodes/cult/cult.dm
+++ b/code/game/gamemodes/cult/cult.dm
@@ -26,8 +26,8 @@
return FALSE
else
return FALSE
- if(M.isloyal() || issilicon(M) || isbot(M) || isdrone(M) || is_servant_of_ratvar(M))
- return FALSE //can't convert machines, shielded, or ratvar's dogs
+ if(M.isloyal() || issilicon(M) || isbot(M) || isdrone(M) || is_servant_of_ratvar(M) || !M.client)
+ return FALSE //can't convert machines, shielded, braindead, or ratvar's dogs
return TRUE
/datum/game_mode/cult
@@ -80,7 +80,7 @@
cultist.special_role = ROLE_CULTIST
cultist.restricted_roles = restricted_jobs
log_game("[cultist.key] (ckey) has been selected as a cultist")
-
+
return (cultists_to_cult.len>=required_enemies)
diff --git a/code/game/gamemodes/nuclear/nuclear.dm b/code/game/gamemodes/nuclear/nuclear.dm
index b5e1224cc8..c6857cd222 100644
--- a/code/game/gamemodes/nuclear/nuclear.dm
+++ b/code/game/gamemodes/nuclear/nuclear.dm
@@ -21,13 +21,16 @@
/datum/game_mode/nuclear/pre_setup()
var/n_agents = min(round(num_players() / 10), antag_candidates.len, agents_possible)
- for(var/i = 0, i < n_agents, ++i)
- var/datum/mind/new_op = pick_n_take(antag_candidates)
- pre_nukeops += new_op
- new_op.assigned_role = "Nuclear Operative"
- new_op.special_role = "Nuclear Operative"
- log_game("[new_op.key] (ckey) has been selected as a nuclear operative")
- return TRUE
+ if(n_agents >= required_enemies)
+ for(var/i = 0, i < n_agents, ++i)
+ var/datum/mind/new_op = pick_n_take(antag_candidates)
+ pre_nukeops += new_op
+ new_op.assigned_role = "Nuclear Operative"
+ new_op.special_role = "Nuclear Operative"
+ log_game("[new_op.key] (ckey) has been selected as a nuclear operative")
+ return TRUE
+ else
+ return FALSE
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
diff --git a/code/game/machinery/_machinery.dm b/code/game/machinery/_machinery.dm
index 76709d438e..7b31c502e4 100644
--- a/code/game/machinery/_machinery.dm
+++ b/code/game/machinery/_machinery.dm
@@ -359,7 +359,7 @@ Class Procs:
return 0
/obj/proc/can_be_unfasten_wrench(mob/user, silent) //if we can unwrench this object; returns SUCCESSFUL_UNFASTEN and FAILED_UNFASTEN, which are both TRUE, or CANT_UNFASTEN, which isn't.
- if(!isfloorturf(loc) && !anchored)
+ if(!(isfloorturf(loc) || istype(loc, /turf/open/indestructible)) && !anchored)
to_chat(user, "[src] needs to be on the floor to be secured!")
return FAILED_UNFASTEN
return SUCCESSFUL_UNFASTEN
diff --git a/code/game/machinery/buttons.dm b/code/game/machinery/buttons.dm
index 35d1e040f5..a3168baf54 100644
--- a/code/game/machinery/buttons.dm
+++ b/code/game/machinery/buttons.dm
@@ -172,7 +172,7 @@
/obj/machinery/button/door
name = "door button"
desc = "A door remote control switch."
- var/normaldoorcontrol = 0
+ var/normaldoorcontrol = FALSE
var/specialfunctions = OPEN // Bitflag, see assembly file
/obj/machinery/button/door/setup_device()
diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm
index fbb5faedc2..07f5c0f923 100644
--- a/code/game/machinery/computer/arcade.dm
+++ b/code/game/machinery/computer/arcade.dm
@@ -49,7 +49,9 @@
/obj/item/toy/toy_dagger = 2,
/obj/item/extendohand/acme = 1,
/obj/item/hot_potato/harmless/toy = 1,
- /obj/item/card/emagfake = 1)
+ /obj/item/card/emagfake = 1,
+ /obj/item/clothing/shoes/wheelys = 2,
+ /obj/item/clothing/shoes/kindleKicks = 2)
light_color = LIGHT_COLOR_GREEN
diff --git a/code/game/machinery/dance_machine.dm b/code/game/machinery/dance_machine.dm
index ea9eae906a..bd41e3aa3a 100644
--- a/code/game/machinery/dance_machine.dm
+++ b/code/game/machinery/dance_machine.dm
@@ -400,15 +400,16 @@
/obj/machinery/disco/proc/dance4(var/mob/living/M)
- var/speed = rand(1,3)
+ //var/speed = rand(1,3) // CIT CHANGE
set waitfor = 0
- var/time = 30
+ /*var/time = 30 CIT CHANGE -- replaces dance4 with rapid spinning so that disco balls dont make weird shit happen
while(time)
sleep(speed)
for(var/i in 1 to speed)
M.setDir(pick(GLOB.cardinals))
M.lay_down(TRUE)
- time--
+ time--*/
+ M.SpinAnimation(1,30)
/obj/machinery/disco/proc/dance5(var/mob/living/M)
animate(M, transform = matrix(180, MATRIX_ROTATE), time = 1, loop = 0)
diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index b1075a41a0..134aba6b27 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -50,6 +50,12 @@
integrity_failure = 70
damage_deflection = AIRLOCK_DAMAGE_DEFLECTION_N
interact_open = TRUE
+ autoclose = TRUE
+ secondsElectrified = 0 //How many seconds remain until the door is no longer electrified. -1 if it is permanently electrified until someone fixes it.
+ assemblytype = /obj/structure/door_assembly
+ normalspeed = 1
+ explosion_block = 1
+ hud_possible = list(DIAG_AIRLOCK_HUD)
var/security_level = 0 //How much are wires secured
var/aiControlDisabled = 0 //If 1, AI control is disabled until the AI hacks back in and disables the lock. If 2, the AI has bypassed the lock. If -1, the control is enabled but the AI had bypassed it earlier, so if it is disabled again the AI would have no trouble getting back in.
@@ -58,21 +64,16 @@
var/secondsBackupPowerLost = 0 //The number of seconds until power is restored.
var/spawnPowerRestoreRunning = FALSE
var/lights = TRUE // bolt lights show by default
- secondsElectrified = 0 //How many seconds remain until the door is no longer electrified. -1 if it is permanently electrified until someone fixes it.
var/aiDisabledIdScanner = FALSE
var/aiHacking = FALSE
- var/obj/machinery/door/airlock/closeOther = null
- var/closeOtherId = null
- var/lockdownbyai = FALSE
- assemblytype = /obj/structure/door_assembly
+ var/closeOtherId //Cyclelinking for airlocks that aren't on the same x or y coord as the target.
+ var/obj/machinery/door/airlock/closeOther
var/justzap = FALSE
- normalspeed = 1
- var/obj/item/electronics/airlock/electronics = null
+ var/obj/item/electronics/airlock/electronics
var/shockCooldown = FALSE //Prevents multiple shocks from happening
- autoclose = TRUE
- var/obj/item/device/doorCharge/charge = null //If applied, causes an explosion upon opening the door
+ var/obj/item/device/doorCharge/charge //If applied, causes an explosion upon opening the door
var/obj/item/note //Any papers pinned to the airlock
- var/detonated = 0
+ var/detonated = FALSE
var/abandoned = FALSE
var/doorOpen = 'sound/machines/airlock.ogg'
var/doorClose = 'sound/machines/airlockclose.ogg'
@@ -81,7 +82,7 @@
var/boltDown = 'sound/machines/boltsdown.ogg'
var/noPower = 'sound/machines/doorclick.ogg'
var/previous_airlock = /obj/structure/door_assembly //what airlock assembly mineral plating was applied to
- var/airlock_material = null //material of inner filling; if its an airlock with glass, this should be set to "glass"
+ var/airlock_material //material of inner filling; if its an airlock with glass, this should be set to "glass"
var/overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi'
var/note_overlay_file = 'icons/obj/doors/airlocks/station/overlays.dmi' //Used for papers and photos pinned to the airlock
@@ -90,9 +91,6 @@
var/shuttledocked = 0
var/delayed_close_requested = FALSE // TRUE means the door will automatically close the next time it's opened.
- explosion_block = 1
- hud_possible = list(DIAG_AIRLOCK_HUD)
-
var/air_tight = FALSE //TRUE means density will be set as soon as the door begins to close
var/prying_so_hard = FALSE
diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm
index f6d80bca49..020133172f 100644
--- a/code/game/machinery/doors/airlock_types.dm
+++ b/code/game/machinery/doors/airlock_types.dm
@@ -404,7 +404,7 @@
overlays_file = 'icons/obj/doors/airlocks/cult/runed/overlays.dmi'
assemblytype = /obj/structure/door_assembly/door_assembly_cult
hackProof = TRUE
- aiControlDisabled = TRUE
+ aiControlDisabled = 1
req_access = list(ACCESS_BLOODCULT)
damage_deflection = 10
var/openingoverlaytype = /obj/effect/temp_visual/cult/door
@@ -418,6 +418,19 @@
/obj/machinery/door/airlock/cult/canAIControl(mob/user)
return (iscultist(user) && !isAllPowerCut())
+/obj/machinery/door/airlock/cult/obj_break(damage_flag)
+ if(!(flags_1 & BROKEN) && !(flags_1 & NODECONSTRUCT_1))
+ stat |= BROKEN
+ if(!panel_open)
+ panel_open = TRUE
+ update_icon()
+
+/obj/machinery/door/airlock/cult/isElectrified()
+ return FALSE
+
+/obj/machinery/door/airlock/cult/hasPower()
+ return TRUE
+
/obj/machinery/door/airlock/cult/allowed(mob/living/L)
if(!density)
return 1
@@ -487,7 +500,7 @@
/obj/machinery/door/airlock/cult/weak
name = "brittle cult airlock"
desc = "An airlock hastily corrupted by blood magic, it is unusually brittle in this state."
- normal_integrity = 180
+ normal_integrity = 150
damage_deflection = 5
armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0)
@@ -498,7 +511,7 @@
icon = 'icons/obj/doors/airlocks/clockwork/pinion_airlock.dmi'
overlays_file = 'icons/obj/doors/airlocks/clockwork/overlays.dmi'
hackProof = TRUE
- aiControlDisabled = TRUE
+ aiControlDisabled = 1
req_access = list(ACCESS_CLOCKCULT)
use_power = FALSE
resistance_flags = FIRE_PROOF | ACID_PROOF
diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm
index e924472270..3c4dec09db 100644
--- a/code/game/machinery/doors/door.dm
+++ b/code/game/machinery/doors/door.dm
@@ -28,7 +28,6 @@
var/safe = TRUE //whether the door detects things and mobs in its way and reopen or crushes them.
var/locked = FALSE //whether the door is bolted or not.
var/assemblytype //the type of door frame to drop during deconstruction
- var/auto_close //TO BE REMOVED, no longer used, it's just preventing a runtime with a map var edit.
var/datum/effect_system/spark_spread/spark_system
var/damage_deflection = 10
var/real_explosion_block //ignore this, just use explosion_block
diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm
index 5a1a759d07..0964c1d913 100644
--- a/code/game/machinery/pipe/construction.dm
+++ b/code/game/machinery/pipe/construction.dm
@@ -193,11 +193,8 @@ Buildable meters
w_class = WEIGHT_CLASS_BULKY
var/piping_layer = PIPING_LAYER_DEFAULT
-/obj/item/pipe_meter/attackby(obj/item/I, mob/user, params)
- ..()
+obj/item/pipe_meter/wrench_act(mob/living/user, obj/item/wrench/W)
- if (!istype(I, /obj/item/wrench))
- return ..()
var/obj/machinery/atmospherics/pipe/pipe
for(var/obj/machinery/atmospherics/pipe/P in loc)
if(P.piping_layer == piping_layer)
@@ -207,10 +204,20 @@ Buildable meters
to_chat(user, "You need to fasten it to a pipe!")
return TRUE
new /obj/machinery/meter(loc, piping_layer)
- I.play_tool_sound(src)
+ W.play_tool_sound(src)
to_chat(user, "You fasten the meter to the pipe.")
qdel(src)
+obj/item/pipe_meter/screwdriver_act(mob/living/user, obj/item/S)
+ if(!isturf(loc))
+ to_chat(user, "You need to fasten it to the floor!")
+ return TRUE
+
+ new /obj/machinery/meter/turf(loc, piping_layer)
+ S.play_tool_sound(src)
+ to_chat(user, "You fasten the meter to the [loc.name].")
+ qdel(src)
+
/obj/item/pipe_meter/dropped()
. = ..()
if(loc)
diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm
index dffb4650e8..c8202b4e10 100644
--- a/code/game/machinery/porta_turret/portable_turret.dm
+++ b/code/game/machinery/porta_turret/portable_turret.dm
@@ -381,7 +381,7 @@
if(iscyborg(sillycone))
var/mob/living/silicon/robot/sillyconerobot = A
- if(faction == "syndicate" && sillyconerobot.emagged == 1)
+ if(LAZYLEN(faction) && (ROLE_SYNDICATE in faction) && sillyconerobot.emagged == TRUE)
continue
targets += sillycone
@@ -389,7 +389,7 @@
if(iscarbon(A))
var/mob/living/carbon/C = A
//If not emagged, only target non downed carbons
- if(mode != TURRET_LETHAL && (C.stat || C.handcuffed || C.lying))
+ if(mode != TURRET_LETHAL && (C.stat || C.handcuffed || C.recoveringstam))//CIT CHANGE - replaces check for lying with check for recoveringstam
continue
//If emagged, target all but dead carbons
diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm
index ac7bf4299d..b707ff8bd0 100644
--- a/code/game/machinery/vending.dm
+++ b/code/game/machinery/vending.dm
@@ -890,8 +890,8 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
icon_deny = "wallmed-deny"
density = FALSE
products = list(/obj/item/reagent_containers/syringe = 3, /obj/item/reagent_containers/pill/patch/styptic = 5,
- /obj/item/reagent_containers/pill/patch/silver_sulf = 5, /obj/item/reagent_containers/pill/charcoal = 2,
- /obj/item/reagent_containers/medspray/sterilizine = 1)
+ /obj/item/reagent_containers/pill/patch/silver_sulf = 5, /obj/item/reagent_containers/medspray/styptic = 2, /obj/item/reagent_containers/medspray/silver_sulf = 2,
+ /obj/item/reagent_containers/pill/charcoal = 2, /obj/item/reagent_containers/medspray/sterilizine = 1)
contraband = list(/obj/item/reagent_containers/pill/tox = 2, /obj/item/reagent_containers/pill/morphine = 2)
armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50)
resistance_flags = FIRE_PROOF
diff --git a/code/game/mecha/equipment/mecha_equipment.dm b/code/game/mecha/equipment/mecha_equipment.dm
index 54530d368c..06884c59b5 100644
--- a/code/game/mecha/equipment/mecha_equipment.dm
+++ b/code/game/mecha/equipment/mecha_equipment.dm
@@ -14,6 +14,7 @@
var/range = MELEE //bitflags
var/salvageable = 1
var/selectable = 1 // Set to 0 for passive equipment such as mining scanner or armor plates
+ var/pacifist_safe = TRUE //Controls if equipment can be used to attack by a pacifist.
/obj/item/mecha_parts/mecha_equipment/proc/update_chassis_page()
if(chassis)
diff --git a/code/game/mecha/equipment/tools/mining_tools.dm b/code/game/mecha/equipment/tools/mining_tools.dm
index 16c0e62795..680b9fe864 100644
--- a/code/game/mecha/equipment/tools/mining_tools.dm
+++ b/code/game/mecha/equipment/tools/mining_tools.dm
@@ -9,6 +9,7 @@
equip_cooldown = 15
energy_drain = 10
force = 15
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/drill/Initialize()
. = ..()
diff --git a/code/game/mecha/equipment/tools/work_tools.dm b/code/game/mecha/equipment/tools/work_tools.dm
index ac8304be39..330247f88c 100644
--- a/code/game/mecha/equipment/tools/work_tools.dm
+++ b/code/game/mecha/equipment/tools/work_tools.dm
@@ -10,6 +10,7 @@
energy_drain = 10
var/dam_force = 20
var/obj/mecha/working/ripley/cargo_holder
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp/can_attach(obj/mecha/working/ripley/M as obj)
if(..())
diff --git a/code/game/mecha/equipment/weapons/weapons.dm b/code/game/mecha/equipment/weapons/weapons.dm
index a8c799afa9..f6a05c3fa6 100644
--- a/code/game/mecha/equipment/weapons/weapons.dm
+++ b/code/game/mecha/equipment/weapons/weapons.dm
@@ -75,6 +75,7 @@
energy_drain = 30
projectile = /obj/item/projectile/beam/laser
fire_sound = 'sound/weapons/laser.ogg'
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy
equip_cooldown = 15
@@ -102,7 +103,7 @@
energy_drain = 500
projectile = /obj/item/projectile/energy/tesla/cannon
fire_sound = 'sound/magic/lightningbolt.ogg'
-
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse
equip_cooldown = 30
@@ -112,6 +113,7 @@
energy_drain = 120
projectile = /obj/item/projectile/beam/pulse/heavy
fire_sound = 'sound/weapons/marauder.ogg'
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma
equip_cooldown = 10
@@ -124,6 +126,7 @@
energy_drain = 30
projectile = /obj/item/projectile/plasma/adv/mech
fire_sound = 'sound/weapons/plasma_cutter.ogg'
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma/can_attach(obj/mecha/working/M)
if(..()) //combat mech
@@ -243,6 +246,7 @@
projectile = /obj/item/projectile/bullet/incendiary/fnx99
projectiles = 24
projectile_energy_cost = 15
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/silenced
name = "\improper S.H.H. \"Quietus\" Carbine"
@@ -253,6 +257,7 @@
projectile = /obj/item/projectile/bullet/mime
projectiles = 6
projectile_energy_cost = 50
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot
name = "\improper LBX AC 10 \"Scattershot\""
@@ -264,6 +269,7 @@
projectile_energy_cost = 25
projectiles_per_shot = 4
variance = 25
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg
name = "\improper Ultra AC 2"
@@ -277,6 +283,7 @@
variance = 6
randomspread = 1
projectile_delay = 2
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack
name = "\improper SRM-8 missile rack"
@@ -287,6 +294,7 @@
projectiles = 8
projectile_energy_cost = 1000
equip_cooldown = 60
+ pacifist_safe = FALSE
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/launcher
diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm
index b9dcbbfd03..82394ba480 100644
--- a/code/game/mecha/mecha.dm
+++ b/code/game/mecha/mecha.dm
@@ -440,11 +440,24 @@
target = safepick(view(3,target))
if(!target)
return
+
+ var/mob/living/L = user
+ var/obj/structure/closet/C = target
if(!Adjacent(target))
if(selected && selected.is_ranged())
+ if(L.has_trait(TRAIT_PACIFISM) && !selected.pacifist_safe)
+ to_chat(user, "You don't want to harm other living beings!")
+ return
if(selected.action(target,params))
selected.start_cooldown()
else if(selected && selected.is_melee())
+ if(isliving(target) && !selected.pacifist_safe && L.has_trait(TRAIT_PACIFISM))
+ to_chat(user, "You don't want to harm other living beings!")
+ return
+ if(istype(C) && L.has_trait(TRAIT_PACIFISM) && !selected.pacifist_safe && !istype(selected,/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp/))
+ for(var/mob/living/M in C)
+ to_chat(user, "There's someone in there! I don't want to hurt them.")
+ return
if(selected.action(target,params))
selected.start_cooldown()
else
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index aeb7acb651..b5c4e5bfb8 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -510,12 +510,18 @@ GLOBAL_VAR_INIT(rpg_loot_items, FALSE)
to_chat(user, "You cannot locate any organic eyes on this brain!")
return
+ if(user.staminaloss >= STAMINA_SOFTCRIT)//CIT CHANGE - makes eyestabbing impossible if you're in stamina softcrit
+ to_chat(user, "You're too exhausted for that.")//CIT CHANGE - ditto
+ return //CIT CHANGE - ditto
+
src.add_fingerprint(user)
playsound(loc, src.hitsound, 30, 1, -1)
user.do_attack_animation(M)
+ user.adjustStaminaLossBuffered(10)//CIT CHANGE - makes eyestabbing cost stamina
+
if(M != user)
M.visible_message("[user] has stabbed [M] in the eye with [src]!", \
"[user] stabs you in the eye with [src]!")
diff --git a/code/game/objects/items/RCD.dm b/code/game/objects/items/RCD.dm
index 4a911f9002..12360ec353 100644
--- a/code/game/objects/items/RCD.dm
+++ b/code/game/objects/items/RCD.dm
@@ -6,6 +6,7 @@
CONTAINS:
RCD
ARCD
+RLD
*/
/obj/item/construction
@@ -30,6 +31,8 @@ ARCD
var/sheetmultiplier = 4 //Controls the amount of matter added for each glass/metal sheet, triple for plasteel
var/plasteelmultiplier = 3 //Plasteel is worth 3 times more than glass or metal
var/no_ammo_message = "The \'Low Ammo\' light on the device blinks yellow."
+ var/has_ammobar = FALSE //controls whether or not does update_icon apply ammo indicator overlays
+ var/ammo_sections = 10 //amount of divisions in the ammo indicator overlay/number of ammo indicator states
/obj/item/construction/Initialize()
. = ..()
@@ -66,6 +69,7 @@ ARCD
to_chat(user, "[src] now holds [matter]/[max_matter] matter-units.")
else
return ..()
+ update_icon() //ensures that ammo counters (if present) get updated
/obj/item/construction/proc/loadwithsheets(obj/item/stack/sheet/S, value, mob/user)
var/maxsheets = round((max_matter-matter)/value) //calculate the max number of sheets that will fit in RCD
@@ -100,6 +104,8 @@ ARCD
. = matter >= amount
if(!. && user)
to_chat(user, no_ammo_message)
+ if(has_ammobar)
+ flick("[icon_state]_empty", src) //somewhat hacky thing to make RCDs with ammo counters actually have a blinking yellow light
return .
/obj/item/construction/proc/range_check(atom/A, mob/user)
@@ -124,6 +130,7 @@ ARCD
righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi'
max_matter = 160
flags_2 = NO_MAT_REDEMPTION_2
+ has_ammobar = TRUE
var/mode = 1
var/ranged = FALSE
var/airlock_type = /obj/machinery/door/airlock
@@ -135,7 +142,6 @@ ARCD
var/delay_mod = 1
var/canRturf = FALSE //Variable for R walls to deconstruct them
-
/obj/item/construction/rcd/suicide_act(mob/user)
user.visible_message("[user] sets the RCD to 'Wall' and points it down [user.p_their()] throat! It looks like [user.p_theyre()] trying to commit suicide..")
return (BRUTELOSS)
@@ -381,6 +387,16 @@ ARCD
explosion(src, 0, 0, 3, 1, flame_range = 1)
qdel(src)
+/obj/item/construction/rcd/update_icon()
+ ..()
+ if(has_ammobar)
+ var/ratio = CEILING((matter / max_matter) * ammo_sections, 1)
+ cut_overlays() //To prevent infinite stacking of overlays
+ add_overlay("[icon_state]_charge[ratio]")
+
+/obj/item/construction/rcd/Initialize()
+ ..()
+ update_icon()
/obj/item/construction/rcd/borg
no_ammo_message = "Insufficient charge."
@@ -419,6 +435,8 @@ ARCD
/obj/item/construction/rcd/combat
name = "industrial RCD"
+ icon_state = "ircd"
+ item_state = "ircd"
max_matter = 500
matter = 500
canRturf = TRUE
@@ -456,7 +474,8 @@ ARCD
delay_mod = 0.6
ranged = TRUE
icon_state = "arcd"
- item_state = "rcd"
+ item_state = "oldrcd"
+ has_ammobar = FALSE
/obj/item/construction/rcd/arcd/afterattack(atom/A, mob/user)
if(!range_check(A,user))
diff --git a/code/game/objects/items/RPD.dm b/code/game/objects/items/RPD.dm
index 4169e70dc9..cc72dff4e8 100644
--- a/code/game/objects/items/RPD.dm
+++ b/code/game/objects/items/RPD.dm
@@ -6,9 +6,8 @@ RPD
#define PAINT_MODE -2
#define EATING_MODE -1
#define ATMOS_MODE 0
-#define METER_MODE 1
-#define DISPOSALS_MODE 2
-#define TRANSIT_MODE 3
+#define DISPOSALS_MODE 1
+#define TRANSIT_MODE 2
GLOBAL_LIST_INIT(atmos_pipe_recipes, list(
@@ -318,7 +317,7 @@ GLOBAL_LIST_INIT(transit_tube_recipes, list(
var/queued_p_flipped = p_flipped
// clicking on an existing component puts the new one on the same layer
- if ((mode == ATMOS_MODE || mode == METER_MODE) && istype(A, /obj/machinery/atmospherics))
+ if (mode == ATMOS_MODE && istype(A, /obj/machinery/atmospherics))
var/obj/machinery/atmospherics/AM = A
temp_piping_layer = AM.piping_layer
A = get_turf(user)
@@ -352,35 +351,30 @@ GLOBAL_LIST_INIT(transit_tube_recipes, list(
if(ATMOS_MODE) //Making pipes
if(!can_make_pipe)
return ..()
- to_chat(user, "You start building a pipe...")
playsound(get_turf(src), 'sound/machines/click.ogg', 50, 1)
- if(do_after(user, 2, target = A))
- activate()
+ if (recipe.type == /datum/pipe_info/meter)
+ to_chat(user, "You start building a meter...")
+ if(do_after(user, 2, target = A))
+ activate()
+ var/obj/item/pipe_meter/PM = new /obj/item/pipe_meter(get_turf(A))
+ PM.setAttachLayer(temp_piping_layer)
+ else
+ to_chat(user, "You start building a pipe...")
+ if(do_after(user, 2, target = A))
+ activate()
+ var/obj/machinery/atmospherics/path = queued_p_type
+ var/pipe_item_type = initial(path.construction_type) || /obj/item/pipe
+ var/obj/item/pipe/P = new pipe_item_type(get_turf(A), queued_p_type, queued_p_dir)
- var/obj/machinery/atmospherics/path = queued_p_type
- var/pipe_item_type = initial(path.construction_type) || /obj/item/pipe
-
- var/obj/item/pipe/P = new pipe_item_type(get_turf(A), queued_p_type, queued_p_dir)
-
- if(queued_p_flipped && istype(P, /obj/item/pipe/trinary/flippable))
- var/obj/item/pipe/trinary/flippable/F = P
- F.flipped = queued_p_flipped
-
- P.update()
- P.add_fingerprint(usr)
- P.setPipingLayer(temp_piping_layer)
- P.add_atom_colour(GLOB.pipe_paint_colors[paint_color], FIXED_COLOUR_PRIORITY)
-
- if(METER_MODE) //Making pipe meters
- if(!can_make_pipe)
- return ..()
- to_chat(user, "You start building a meter...")
- playsound(get_turf(src), 'sound/machines/click.ogg', 50, 1)
- if(do_after(user, 2, target = A))
- activate()
- var/obj/item/pipe_meter/PM = new /obj/item/pipe_meter(get_turf(A))
- PM.setAttachLayer(temp_piping_layer)
+ if(queued_p_flipped && istype(P, /obj/item/pipe/trinary/flippable))
+ var/obj/item/pipe/trinary/flippable/F = P
+ F.flipped = queued_p_flipped
+ P.update()
+ P.add_fingerprint(usr)
+ P.setPipingLayer(temp_piping_layer)
+ P.add_atom_colour(GLOB.pipe_paint_colors[paint_color], FIXED_COLOUR_PRIORITY)
+
if(DISPOSALS_MODE) //Making disposals pipes
if(!can_make_pipe)
return ..()
@@ -439,5 +433,4 @@ GLOBAL_LIST_INIT(transit_tube_recipes, list(
#undef PAINT_MODE
#undef EATING_MODE
#undef ATMOS_MODE
-#undef METER_MODE
#undef DISPOSALS_MODE
diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm
index f5d217f0b0..08e6204c63 100644
--- a/code/game/objects/items/cards_ids.dm
+++ b/code/game/objects/items/cards_ids.dm
@@ -293,6 +293,14 @@ update_label("John Doe", "Clowny")
access = get_all_accesses()+get_ert_access("med")-ACCESS_CHANGE_IDS
. = ..()
+/obj/item/card/id/ert/chaplain
+ registered_name = "Religious Response Officer"
+ assignment = "Religious Response Officer"
+
+/obj/item/card/id/ert/chaplain/Initialize()
+ access = get_all_accesses()+get_ert_access("sec")-ACCESS_CHANGE_IDS
+ . = ..()
+
/obj/item/card/id/prisoner
name = "prisoner ID card"
desc = "You are a number, you are not a free man."
diff --git a/code/game/objects/items/devices/dogborg_sleeper.dm b/code/game/objects/items/devices/dogborg_sleeper.dm
index 217786f142..ccb9293cd3 100644
--- a/code/game/objects/items/devices/dogborg_sleeper.dm
+++ b/code/game/objects/items/devices/dogborg_sleeper.dm
@@ -89,7 +89,7 @@
update_gut()
START_PROCESSING(SSobj, src)
user.visible_message("[hound.name]'s medical pod lights up and expands as [target.name] slips inside into their [src.name].", "Your medical pod lights up as [target] slips into your [src]. Life support functions engaged.")
- message_admins("[key_name(hound)] has eaten [key_name(patient)] as a dogborg. ([hound ? "JMP" : "null"])")
+ message_admins("[key_name(hound)] has sleeper'd [key_name(patient)] as a dogborg. [ADMIN_JMP(src)]")
playsound(hound, 'sound/effects/bin_close.ogg', 100, 1)
/obj/item/device/dogborg/sleeper/container_resist(mob/living/user)
@@ -139,7 +139,6 @@
else //You clicked eject with nothing in you, let's just reset stuff to be sure.
items_preserved.Cut()
cleaning = FALSE
- hound.visible_message("[hound.name] belches, torso flexing.")
update_gut()
/obj/item/device/dogborg/sleeper/attack_self(mob/user)
@@ -497,4 +496,4 @@
user.visible_message("[hound.name]'s garbage processor groans lightly as [trashman] slips inside.", "Your garbage compactor groans lightly as [trashman] slips inside.")
playsound(hound, 'sound/effects/bin_close.ogg', 80, 1)
return
- return
\ No newline at end of file
+ return
diff --git a/code/game/objects/items/eightball.dm b/code/game/objects/items/eightball.dm
index 8b26e33842..50bf9b27c1 100644
--- a/code/game/objects/items/eightball.dm
+++ b/code/game/objects/items/eightball.dm
@@ -11,8 +11,8 @@
var/shaking = FALSE
var/on_cooldown = FALSE
- var/shake_time = 150
- var/cooldown_time = 1800
+ var/shake_time = 50
+ var/cooldown_time = 100
var/static/list/possible_answers = list(
"It is certain",
@@ -95,6 +95,8 @@
// except it actually ASKS THE DEAD (wooooo)
/obj/item/toy/eightball/haunted
+ shake_time = 150
+ cooldown_time = 1800
flags_1 = HEAR_1
var/last_message
var/selected_message
diff --git a/code/game/objects/items/grenades/chem_grenade.dm b/code/game/objects/items/grenades/chem_grenade.dm
index 2f08585309..a127201e41 100644
--- a/code/game/objects/items/grenades/chem_grenade.dm
+++ b/code/game/objects/items/grenades/chem_grenade.dm
@@ -550,3 +550,20 @@
beakers += B1
beakers += B2
+
+/obj/item/grenade/chem_grenade/holy
+ name = "holy hand grenade"
+ desc = "A vessel of concentrated religious might."
+ icon_state = "holy_grenade"
+ stage = READY
+
+/obj/item/grenade/chem_grenade/holy/Initialize()
+ . = ..()
+ var/obj/item/reagent_containers/glass/beaker/large/B1 = new(src)
+ var/obj/item/reagent_containers/glass/beaker/large/B2 = new(src)
+
+ B1.reagents.add_reagent("potassium", 100)
+ B2.reagents.add_reagent("holywater", 100)
+
+ beakers += B1
+ beakers += B2
diff --git a/code/game/objects/items/holy_weapons.dm b/code/game/objects/items/holy_weapons.dm
index 3c58cbb2a2..13ca2b35d6 100644
--- a/code/game/objects/items/holy_weapons.dm
+++ b/code/game/objects/items/holy_weapons.dm
@@ -274,6 +274,17 @@
qdel(S)
return ..()
+/obj/item/nullrod/scythe/talking/chainsword
+ icon_state = "chainswordon"
+ item_state = "chainswordon"
+ name = "possessed chainsaw sword"
+ desc = "Suffer not a heretic to live."
+ slot_flags = SLOT_BELT
+ force = 30
+ attack_verb = list("sawed", "torn", "cut", "chopped", "diced")
+ hitsound = 'sound/weapons/chainsawhit.ogg'
+
+
/obj/item/nullrod/hammmer
icon_state = "hammeron"
item_state = "hammeron"
diff --git a/code/game/objects/items/implants/implant_chem.dm b/code/game/objects/items/implants/implant_chem.dm
index 1d57294b1a..88b7e032f3 100644
--- a/code/game/objects/items/implants/implant_chem.dm
+++ b/code/game/objects/items/implants/implant_chem.dm
@@ -30,8 +30,10 @@
GLOB.tracked_chem_implants -= src
return ..()
-/obj/item/implant/chem/trigger(emote, mob/source)
+/obj/item/implant/chem/trigger(emote, mob/living/source)
if(emote == "deathgasp")
+ if(istype(source) && !(source.stat == DEAD))
+ return
activate(reagents.total_volume)
/obj/item/implant/chem/activate(cause)
diff --git a/code/game/objects/items/melee/misc.dm b/code/game/objects/items/melee/misc.dm
index 670715dcd5..7d74a00ce6 100644
--- a/code/game/objects/items/melee/misc.dm
+++ b/code/game/objects/items/melee/misc.dm
@@ -106,6 +106,10 @@
if(!on)
return ..()
+ if(user.staminaloss >= STAMINA_SOFTCRIT)//CIT CHANGE - makes batons unusuable in stamina softcrit
+ to_chat(user, "You're too exhausted for that.")//CIT CHANGE - ditto
+ return //CIT CHANGE - ditto
+
add_fingerprint(user)
if((user.has_trait(TRAIT_CLUMSY)) && prob(50))
to_chat(user, "You club yourself over the head.")
@@ -145,6 +149,7 @@
else
target.LAssailant = user
cooldown = world.time + 40
+ user.adjustStaminaLossBuffered(getweight())//CIT CHANGE - makes swinging batons cost stamina
/obj/item/melee/classic_baton/telescopic
name = "telescopic baton"
diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm
index 2e38a7e112..ee74b7c84d 100644
--- a/code/game/objects/items/storage/belt.dm
+++ b/code/game/objects/items/storage/belt.dm
@@ -46,7 +46,9 @@
/obj/item/device/geiger_counter,
/obj/item/extinguisher/mini,
/obj/item/device/radio,
- /obj/item/clothing/gloves
+ /obj/item/clothing/gloves,
+ /obj/item/holosign_creator,
+ /obj/item/device/assembly/signaler
)
content_overlays = TRUE
@@ -121,6 +123,7 @@
/obj/item/reagent_containers/glass/bottle,
/obj/item/reagent_containers/pill,
/obj/item/reagent_containers/syringe,
+ /obj/item/reagent_containers/medspray,
/obj/item/lighter,
/obj/item/storage/fancy/cigarettes,
/obj/item/storage/pill_bottle,
@@ -153,7 +156,11 @@
/obj/item/storage/bag/bio,
/obj/item/reagent_containers/blood,
/obj/item/tank/internals/emergency_oxygen,
- /obj/item/pinpointer/crew
+ /obj/item/pinpointer/crew,
+ /obj/item/gun/syringe/syndicate,
+ /obj/item/implantcase,
+ /obj/item/implant,
+ /obj/item/implanter
)
@@ -175,13 +182,13 @@
/obj/item/ammo_casing/shotgun,
/obj/item/ammo_box,
/obj/item/reagent_containers/food/snacks/donut,
- /obj/item/reagent_containers/food/snacks/donut/jelly,
/obj/item/kitchen/knife/combat,
/obj/item/device/flashlight/seclite,
/obj/item/melee/classic_baton/telescopic,
/obj/item/device/radio,
- /obj/item/clothing/gloves/,
- /obj/item/restraints/legcuffs/bola
+ /obj/item/clothing/gloves,
+ /obj/item/restraints/legcuffs/bola,
+ /obj/item/holosign_creator/security
)
content_overlays = TRUE
@@ -209,6 +216,7 @@
/obj/item/weldingtool,
/obj/item/wirecutters,
/obj/item/wrench,
+ /obj/item/device/multitool,
/obj/item/device/flashlight,
/obj/item/stack/cable_coil,
/obj/item/device/analyzer,
@@ -402,7 +410,9 @@
/obj/item/soap,
/obj/item/holosign_creator,
/obj/item/key/janitor,
- /obj/item/clothing/gloves
+ /obj/item/clothing/gloves,
+ /obj/item/melee/flyswatter,
+ /obj/item/device/assembly/mousetrap
)
/obj/item/storage/belt/bandolier
diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm
index ca1e18af1b..9987784f97 100644
--- a/code/game/objects/items/storage/boxes.dm
+++ b/code/game/objects/items/storage/boxes.dm
@@ -942,3 +942,12 @@ obj/item/storage/box/clown
/obj/item/storage/box/fountainpens/PopulateContents()
for(var/i in 1 to 7)
new /obj/item/pen/fountain(src)
+
+/obj/item/storage/box/holy_grenades
+ name = "box of holy hand grenades"
+ desc = "Contains several grenades used to rapidly purge heresy."
+ illustration = "flashbang"
+
+/obj/item/storage/box/holy_grenades/PopulateContents()
+ for(var/i in 1 to 7)
+ new/obj/item/grenade/chem_grenade/holy(src)
diff --git a/code/game/objects/items/stunbaton.dm b/code/game/objects/items/stunbaton.dm
index 9f42a7c370..6e88a61349 100644
--- a/code/game/objects/items/stunbaton.dm
+++ b/code/game/objects/items/stunbaton.dm
@@ -115,6 +115,10 @@
deductcharge(hitcost)
return
+ if(user.staminaloss >= STAMINA_SOFTCRIT)//CIT CHANGE - makes it impossible to baton in stamina softcrit
+ to_chat(user, "You're too exhausted for that.")//CIT CHANGE - ditto
+ return //CIT CHANGE - ditto
+
if(iscyborg(M))
..()
return
@@ -129,6 +133,7 @@
if(status)
if(baton_stun(M, user))
user.do_attack_animation(M)
+ user.adjustStaminaLossBuffered(getweight())//CIT CHANGE - makes stunbatonning others cost stamina
return
else
M.visible_message("[user] has prodded [M] with [src]. Luckily it was off.", \
@@ -154,6 +159,7 @@
return 0
L.Knockdown(stunforce)
+ L.adjustStaminaLoss(stunforce*0.1)//CIT CHANGE - makes stunbatons deal extra staminaloss. Todo: make this also deal pain when pain gets implemented.
L.apply_effect(STUTTER, stunforce)
if(user)
L.lastattacker = user.real_name
diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm
index 2d82c3829b..713f5761c0 100644
--- a/code/game/objects/items/weaponry.dm
+++ b/code/game/objects/items/weaponry.dm
@@ -101,6 +101,7 @@
var/mob/living/carbon/human/H = loc
loc.layer = LARGE_MOB_LAYER //NO HIDING BEHIND PLANTS FOR YOU, DICKWEED (HA GET IT, BECAUSE WEEDS ARE PLANTS)
H.bleedsuppress = TRUE //AND WE WON'T BLEED OUT LIKE COWARDS
+ H.adjustStaminaLoss(-5) //CIT CHANGE - AND MAY HE NEVER SUCCUMB TO EXHAUSTION
else
if(!admin_spawned)
qdel(src)
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm b/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm
index 4bddb0f7a7..03afb77b9e 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm
@@ -9,7 +9,7 @@
new /obj/item/storage/lockbox/medal/cargo(src)
new /obj/item/clothing/under/rank/cargo(src)
new /obj/item/clothing/shoes/sneakers/brown(src)
-// new /obj/item/device/radio/headset/headset_cargo(src)
+ new /obj/item/device/radio/headset/headset_cargo(src)
new /obj/item/clothing/suit/fire/firefighter(src)
new /obj/item/clothing/gloves/fingerless(src)
new /obj/item/device/megaphone/cargo(src)
diff --git a/code/game/objects/structures/transit_tubes/transit_tube.dm b/code/game/objects/structures/transit_tubes/transit_tube.dm
index a958cc2fb6..f0e11434f2 100644
--- a/code/game/objects/structures/transit_tubes/transit_tube.dm
+++ b/code/game/objects/structures/transit_tubes/transit_tube.dm
@@ -12,6 +12,7 @@
var/list/tube_dirs //list of directions this tube section can connect to.
var/exit_delay = 1
var/enter_delay = 0
+ var/const/time_to_unwrench = 2 SECONDS
/obj/structure/transit_tube/CanPass(atom/movable/mover, turf/target)
if(istype(mover) && (mover.pass_flags & PASSGLASS))
@@ -42,7 +43,7 @@
to_chat(user, "Remove the pod first!")
return
user.visible_message("[user] starts to deattach \the [src].", "You start to deattach the [name]...")
- if(W.use_tool(src, user, 40, volume=50))
+ if(W.use_tool(src, user, time_to_unwrench, volume=50))
to_chat(user, "You deattach the [name].")
var/obj/structure/c_transit_tube/R = new tube_construction(loc)
R.setDir(dir)
diff --git a/code/game/objects/structures/transit_tubes/transit_tube_construction.dm b/code/game/objects/structures/transit_tubes/transit_tube_construction.dm
index 883cd8e4bb..fb5988f72a 100644
--- a/code/game/objects/structures/transit_tubes/transit_tube_construction.dm
+++ b/code/game/objects/structures/transit_tubes/transit_tube_construction.dm
@@ -9,6 +9,7 @@
density = FALSE
layer = LOW_ITEM_LAYER //same as the built tube
anchored = FALSE
+ var/const/time_to_unwrench = 2 SECONDS
var/flipped = 0
var/build_type = /obj/structure/transit_tube
var/flipped_build_type
@@ -33,7 +34,7 @@
/obj/structure/c_transit_tube/wrench_act(mob/living/user, obj/item/I)
to_chat(user, "You start attaching the [name]...")
add_fingerprint(user)
- if(I.use_tool(src, user, 40, volume=50))
+ if(I.use_tool(src, user, time_to_unwrench, volume=50))
to_chat(user, "You attach the [name].")
var/obj/structure/transit_tube/R = new build_type(loc, dir)
transfer_fingerprints_to(R)
diff --git a/code/game/turfs/simulated/floor/reinf_floor.dm b/code/game/turfs/simulated/floor/reinf_floor.dm
index 71887fa08e..9c2495f858 100644
--- a/code/game/turfs/simulated/floor/reinf_floor.dm
+++ b/code/game/turfs/simulated/floor/reinf_floor.dm
@@ -114,6 +114,7 @@
desc = "The air hangs heavy over this sinister flooring."
icon_state = "plating"
CanAtmosPass = ATMOS_PASS_NO
+ floor_tile = null
var/obj/effect/clockwork/overlay/floor/bloodcult/realappearance
diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm
index 4f6ab44a5e..ed21431fe7 100644
--- a/code/game/turfs/space/space.dm
+++ b/code/game/turfs/space/space.dm
@@ -130,7 +130,24 @@
return
if(destination_z && destination_x && destination_y)
- A.forceMove(locate(destination_x, destination_y, destination_z))
+ var/tx = destination_x
+ var/ty = destination_y
+ var/turf/DT = locate(tx, ty, destination_z)
+ var/itercount = 0
+ while(DT.density || istype(DT.loc,/area/shuttle)) // Extend towards the center of the map, trying to look for a better place to arrive
+ if (itercount++ >= 100)
+ log_game("SPACE Z-TRANSIT ERROR: Could not not find a safe place to land [A] within 100 iterations.")
+ break
+ if (tx < 128)
+ tx++
+ else
+ tx--
+ if (ty < 128)
+ ty++
+ else
+ ty--
+ DT = locate(tx, ty, destination_z)
+ A.forceMove(DT)
if(isliving(A))
var/mob/living/L = A
diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm
index 1f818b442e..5cdc58dae3 100644
--- a/code/modules/admin/admin.dm
+++ b/code/modules/admin/admin.dm
@@ -53,11 +53,6 @@
body += "\[set\] "
body += "\[zero\]"
- body += "
"
- body += "Make mentor | "
- body += "Remove mentor"
- body += "
"
-
body += "
\[ "
body += "VV - "
if(M.mind)
@@ -184,6 +179,8 @@
body += "Thunderdome Admin | "
body += "Thunderdome Observer | "
+ body += usr.client.citaPPoptions(M) // CITADEL
+
body += "
"
body += "